diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2010-01-26 20:15:26 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2010-01-26 20:15:26 -0800 |
commit | 8679f74687ce18576026d48ec4ca5a37c084e0e8 (patch) | |
tree | 4f318f8f68b3ddb3ee5690184b1b238b3c324dbe | |
parent | 0d513a14ad622f7e65fe9debb3b6078bdaa4b63c (diff) | |
download | txr-8679f74687ce18576026d48ec4ca5a37c084e0e8.tar.gz txr-8679f74687ce18576026d48ec4ca5a37c084e0e8.tar.bz2 txr-8679f74687ce18576026d48ec4ca5a37c084e0e8.zip |
Version 033.
-rw-r--r-- | ChangeLog | 13 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | txr.1 | 4 | ||||
-rw-r--r-- | txr.c | 2 |
4 files changed, 17 insertions, 4 deletions
@@ -1,5 +1,18 @@ 2010-01-26 Kaz Kylheku <kkylheku@gmail.com> + Version 033 + + Addressed exponential memory behaviors + in derivative-based regex matching. + + * txr.c (version): Bumped to 033. + + * txr.1: Set version to 033. + + * configure: Bumped txr_ver to 033. + +2010-01-26 Kaz Kylheku <kkylheku@gmail.com> + hash.c (hash_process_weak): There is no point in fixing up the type codes of spuriously reached nodes; reached objects will not be removed by weak processing and so it's better @@ -323,7 +323,7 @@ fi # -txr_ver=032 +txr_ver=033 # # The all important banner. @@ -21,9 +21,9 @@ .\"IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED .\"WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -.TH "txr" 1 2010-01-25 "Utility Commands" "Txr Text Extractor" "Kaz Kylheku" +.TH "txr" 1 2010-01-26 "Utility Commands" "Txr Text Extractor" "Kaz Kylheku" .SH NAME -txr \- text extractor (version 032) +txr \- text extractor (version 033) .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"032"; +const wchar_t *version = L"033"; const wchar_t *progname = L"txr"; const wchar_t *spec_file = L"stdin"; val spec_file_str; |