diff options
-rw-r--r-- | ChangeLog | 20 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | match.c | 2 | ||||
-rw-r--r-- | txr.1 | 2 | ||||
-rw-r--r-- | txr.c | 2 |
5 files changed, 24 insertions, 4 deletions
@@ -1,3 +1,23 @@ +2010-01-16 Kaz Kylheku <kkylheku@gmail.com> + + Version 028. + + Code cleanup. + + New additional regex implementation using regex derivatives, + providing new operators: regex complement, intersection, + non-greedy match. + + Regex syntax bugfixes. + + * txr.c (version): Bumped to 027. + + * txr.1: Bumped version to 027. + + * configure: Bumped txr_ver to 027. + + * match.c (dest_bind): Remove spurious syntax. + 2010-01-15 Kaz Kylheku <kkylheku@gmail.com> * txr.1: Get rid of parens from regex operator descriptions. @@ -323,7 +323,7 @@ fi # -txr_ver=027 +txr_ver=028 # # The all important banner. @@ -249,7 +249,7 @@ static val dest_bind(val bindings, val pattern, val value) return t; piter = cdr(piter); viter = cdr(viter); - } while (consp(piter) && consp(viter)); + } if (bindable(piter)) { bindings = dest_bind(bindings, piter, viter); @@ -23,7 +23,7 @@ .TH "txr" 1 2009-11-24 "Utility Commands" "Txr Text Extractor" "Kaz Kylheku" .SH NAME -txr \- text extractor (version 027) +txr \- text extractor (version 028) .SH SYNOPSIS .B txr [ options ] query-file { data-file }* .sp @@ -43,7 +43,7 @@ #include "utf8.h" #include "txr.h" -const wchar_t *version = L"027"; +const wchar_t *version = L"028"; const wchar_t *progname = L"txr"; const wchar_t *spec_file = L"stdin"; val spec_file_str; |