From af6a7eea44adad42588b7a277b28f13a78693e8c Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Mon, 25 Jan 2010 11:46:00 -0800 Subject: Version 031. --- ChangeLog | 14 ++++++++++++++ configure | 2 +- txr.1 | 4 ++-- txr.c | 2 +- 4 files changed, 18 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index a29d2244..5f2814f1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,17 @@ +2010-01-25 Kaz Kylheku + + Version 031 + + Addresses some spurious object retention problems related to the GC's + conservative scan of the stack. + + * txr.c (version): Bumped to 031. + + * txr.1: Set version to 031. + + * configure: Bumped txr_ver to 031. + + 2010-01-25 Kaz Kylheku * match.c (match_files): Workaround for GC issue diff --git a/configure b/configure index 015ed28e..3b6b0665 100755 --- a/configure +++ b/configure @@ -323,7 +323,7 @@ fi # -txr_ver=030 +txr_ver=031 # # The all important banner. diff --git a/txr.1 b/txr.1 index ccc6ccfc..40f4b9a9 100644 --- a/txr.1 +++ b/txr.1 @@ -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-16 "Utility Commands" "Txr Text Extractor" "Kaz Kylheku" +.TH "txr" 1 2010-01-25 "Utility Commands" "Txr Text Extractor" "Kaz Kylheku" .SH NAME -txr \- text extractor (version 030) +txr \- text extractor (version 031) .SH SYNOPSIS .B txr [ options ] query-file { data-file }* .sp diff --git a/txr.c b/txr.c index ff11841c..d55b4f86 100644 --- a/txr.c +++ b/txr.c @@ -43,7 +43,7 @@ #include "utf8.h" #include "txr.h" -const wchar_t *version = L"030"; +const wchar_t *version = L"031"; const wchar_t *progname = L"txr"; const wchar_t *spec_file = L"stdin"; val spec_file_str; -- cgit v1.2.3 From b457c5d18e108dedae3a521cf8d3058ee3f408e4 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Mon, 25 Jan 2010 14:41:12 -0800 Subject: Version 032. --- ChangeLog | 15 +++++++++++++++ configure | 2 +- match.c | 1 + txr.1 | 2 +- txr.c | 2 +- 5 files changed, 19 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5f2814f1..7868167c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,18 @@ +2010-01-25 Kaz Kylheku + + 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 Version 031 diff --git a/configure b/configure index 3b6b0665..6ac81908 100755 --- a/configure +++ b/configure @@ -323,7 +323,7 @@ fi # -txr_ver=031 +txr_ver=032 # # The all important banner. diff --git a/match.c b/match.c index 65b1b8cb..5c083a6d 100644 --- a/match.c +++ b/match.c @@ -1707,6 +1707,7 @@ repeat_spec_same_data: } } + if (data) { val dataline = first(data); cons_bind (new_bindings, success, diff --git a/txr.1 b/txr.1 index 40f4b9a9..434fec02 100644 --- a/txr.1 +++ b/txr.1 @@ -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 diff --git a/txr.c b/txr.c index d55b4f86..db3eb490 100644 --- a/txr.c +++ b/txr.c @@ -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; -- cgit v1.2.3