diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2011-10-01 22:42:26 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2011-10-01 22:42:26 -0700 |
commit | f7d33f911a5d7ba63e9024bf95b27ac4547c4598 (patch) | |
tree | dfc4c749577aa286351b8d6ac2e1beba520c0ede /txr.c | |
parent | 28f2adb77ce853d675b964f427b16358343444d1 (diff) | |
download | txr-f7d33f911a5d7ba63e9024bf95b27ac4547c4598.tar.gz txr-f7d33f911a5d7ba63e9024bf95b27ac4547c4598.tar.bz2 txr-f7d33f911a5d7ba63e9024bf95b27ac4547c4598.zip |
Version 038
New eof directive.
Fixes in skip directive to work very well with eof.
Consecutive variable matching semantics improved; concept of double
variable match introduced for unbound variable followed by
regex variable.
Directives collect and coll have keyword arguments for more control
over their behavior.
Paralle directives (all, some, none, ...) are available in
horizontal mode.
New choose directive for selecting one of numerous alternatives
GC bugfix in new filtering code.
The code has an issue compling with GNU C++ instead of C,
which is something that is supported by this project.
Not a release-blocking issue. Not easy to fix without
restructuring some code.
* txr.c (version): Bumped.
* txr.1: Bumped version and set date.
* configure (txr_ver): Bumped.
Diffstat (limited to 'txr.c')
-rw-r--r-- | txr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -43,7 +43,7 @@ #include "utf8.h" #include "txr.h" -const wchar_t *version = L"037"; +const wchar_t *version = L"038"; const wchar_t *progname = L"txr"; const wchar_t *spec_file = L"stdin"; val spec_file_str; |