summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2010-01-25 11:46:00 -0800
committerKaz Kylheku <kaz@kylheku.com>2010-01-25 11:46:00 -0800
commitaf6a7eea44adad42588b7a277b28f13a78693e8c (patch)
tree2118ce2bed648744826b67b78e4b46a89e7de740
parent9949e6993e1a11a9ba2231a0cc4d1cb210640682 (diff)
downloadtxr-af6a7eea44adad42588b7a277b28f13a78693e8c.tar.gz
txr-af6a7eea44adad42588b7a277b28f13a78693e8c.tar.bz2
txr-af6a7eea44adad42588b7a277b28f13a78693e8c.zip
Version 031.txr-031
-rw-r--r--ChangeLog14
-rwxr-xr-xconfigure2
-rw-r--r--txr.14
-rw-r--r--txr.c2
4 files changed, 18 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index a29d2244..5f2814f1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,19 @@
2010-01-25 Kaz Kylheku <kkylheku@gmail.com>
+ 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 <kkylheku@gmail.com>
+
* match.c (match_files): Workaround for GC issue
discovered on Red Hat EL 4 with gcc 3.4.3.
In the collect loop, set car(success) to nil.
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;