summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-12-03 14:12:18 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-12-03 14:12:18 -0800
commitea34a4bc8826715e754b84077b244a2941eae7f4 (patch)
tree0f6c7578de6d78d5afb5f220858e4975e96130df
parentd29d62162d6898ea2e9d5b5516834e740c4b8c0c (diff)
downloadtxr-ea34a4bc8826715e754b84077b244a2941eae7f4.tar.gz
txr-ea34a4bc8826715e754b84077b244a2941eae7f4.tar.bz2
txr-ea34a4bc8826715e754b84077b244a2941eae7f4.zip
Version 027.txr-027
-rw-r--r--ChangeLog17
-rwxr-xr-xconfigure2
-rw-r--r--txr.12
-rw-r--r--txr.c2
4 files changed, 20 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 2bde99d0..141e4dda 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,22 @@
2009-12-03 Kaz Kylheku <kkylheku@gmail.com>
+ Version 027.
+
+ Code cleanup.
+
+ gc-related bugfix.
+
+ Improved file copying semantics of make install,
+ and adherence for DESTDIR convention.
+
+ * txr.c (version): Bumped to 027.
+
+ * txr.1: Bumped version to 027.
+
+ * configure: Bumped txr_ver to 027.
+
+2009-12-03 Kaz Kylheku <kkylheku@gmail.com>
+
* Makefile (CFLAGS): Better test for g++, when removing
warning options not appropriate for g++. Sometimes
g++ may be called something that dosn't end in g++,
diff --git a/configure b/configure
index 1a38ca37..fffd5ba4 100755
--- a/configure
+++ b/configure
@@ -323,7 +323,7 @@ fi
#
-txr_ver=026
+txr_ver=027
#
# The all important banner.
diff --git a/txr.1 b/txr.1
index 04278b1a..03434d0e 100644
--- a/txr.1
+++ b/txr.1
@@ -21,7 +21,7 @@
.\"IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
.\"WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
-.TH txr 1 2009-11-24 "txr v. 026" "Text Extraction Utility"
+.TH txr 1 2009-11-24 "txr v. 027" "Text Extraction Utility"
.SH NAME
txr \- text extractor
.SH SYNOPSIS
diff --git a/txr.c b/txr.c
index 2d692bc9..da1de70d 100644
--- a/txr.c
+++ b/txr.c
@@ -43,7 +43,7 @@
#include "utf8.h"
#include "txr.h"
-const wchar_t *version = L"026";
+const wchar_t *version = L"027";
const wchar_t *progname = L"txr";
const wchar_t *spec_file = L"stdin";
val spec_file_str;