diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2010-01-25 14:41:12 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2010-01-25 14:41:12 -0800 |
commit | b457c5d18e108dedae3a521cf8d3058ee3f408e4 (patch) | |
tree | d100df559d7b8edb527524a212ebc2347633f1d8 | |
parent | af6a7eea44adad42588b7a277b28f13a78693e8c (diff) | |
download | txr-b457c5d18e108dedae3a521cf8d3058ee3f408e4.tar.gz txr-b457c5d18e108dedae3a521cf8d3058ee3f408e4.tar.bz2 txr-b457c5d18e108dedae3a521cf8d3058ee3f408e4.zip |
Version 032.
-rw-r--r-- | ChangeLog | 15 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | match.c | 1 | ||||
-rw-r--r-- | txr.1 | 2 | ||||
-rw-r--r-- | txr.c | 2 |
5 files changed, 19 insertions, 3 deletions
@@ -1,5 +1,20 @@ 2010-01-25 Kaz Kylheku <kkylheku@gmail.com> + Version 032 + + Fix showstopper stupidity. + + * match.c (match_files): Fix incorrect change involving dataline + variable made on 2010-01-21; failure to check for end of data. + + * txr.c (version): Bumped to 032. + + * txr.1: Set version to 032. + + * configure: Bumped txr_ver to 032. + +2010-01-25 Kaz Kylheku <kkylheku@gmail.com> + Version 031 Addresses some spurious object retention problems related to the GC's @@ -323,7 +323,7 @@ fi # -txr_ver=031 +txr_ver=032 # # The all important banner. @@ -1707,6 +1707,7 @@ repeat_spec_same_data: } } + if (data) { val dataline = first(data); cons_bind (new_bindings, success, @@ -23,7 +23,7 @@ .TH "txr" 1 2010-01-25 "Utility Commands" "Txr Text Extractor" "Kaz Kylheku" .SH NAME -txr \- text extractor (version 031) +txr \- text extractor (version 032) .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"031"; +const wchar_t *version = L"032"; const wchar_t *progname = L"txr"; const wchar_t *spec_file = L"stdin"; val spec_file_str; |