summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2010-01-19 15:48:33 -0800
committerKaz Kylheku <kaz@kylheku.com>2010-01-19 15:48:33 -0800
commit11eb8bf1fe4212accdcdd821d15dca25fcb51064 (patch)
tree30e0c04cee638b8a824e48eaba1a520a4521c2b8
parent7c6391bb10adc88d156ec88148184bc3eb8681ce (diff)
downloadtxr-11eb8bf1fe4212accdcdd821d15dca25fcb51064.tar.gz
txr-11eb8bf1fe4212accdcdd821d15dca25fcb51064.tar.bz2
txr-11eb8bf1fe4212accdcdd821d15dca25fcb51064.zip
Version 030.txr-030
-rw-r--r--ChangeLog14
-rwxr-xr-xconfigure2
-rw-r--r--txr.12
-rw-r--r--txr.c2
4 files changed, 17 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index a8247e8b..5cac2137 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,19 @@
2010-01-19 Kaz Kylheku <kkylheku@gmail.com>
+ Version 030
+
+ Fixed grammar conflicts.
+
+ R1~R2 syntax supported in regexes.
+
+ * txr.c (version): Bumped to 030.
+
+ * txr.1: Set version to 030.
+
+ * configure: Bumped txr_ver to 030.
+
+2010-01-19 Kaz Kylheku <kkylheku@gmail.com>
+
* parser.y (regex): Getting rid of empty '/' '/' production
again.
(regexpr): Re-introducing empty production; this time using
diff --git a/configure b/configure
index 9acb87bb..015ed28e 100755
--- a/configure
+++ b/configure
@@ -323,7 +323,7 @@ fi
#
-txr_ver=029
+txr_ver=030
#
# The all important banner.
diff --git a/txr.1 b/txr.1
index 729107be..6a5ea5bd 100644
--- a/txr.1
+++ b/txr.1
@@ -23,7 +23,7 @@
.TH "txr" 1 2010-01-16 "Utility Commands" "Txr Text Extractor" "Kaz Kylheku"
.SH NAME
-txr \- text extractor (version 029)
+txr \- text extractor (version 030)
.SH SYNOPSIS
.B txr [ options ] query-file { data-file }*
.sp
diff --git a/txr.c b/txr.c
index 38f6f1e6..ff11841c 100644
--- a/txr.c
+++ b/txr.c
@@ -43,7 +43,7 @@
#include "utf8.h"
#include "txr.h"
-const wchar_t *version = L"029";
+const wchar_t *version = L"030";
const wchar_t *progname = L"txr";
const wchar_t *spec_file = L"stdin";
val spec_file_str;