summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2012-01-21 17:50:15 -0800
committerKaz Kylheku <kaz@kylheku.com>2012-01-21 17:50:15 -0800
commit8b4578f295cc022e8bf0bb62d1a8cf8673636f27 (patch)
treefbc7588a6115a5fffaf31548341076591b1b4acf
parente2118a041353a9d85e1c56051335f8ac0df101fd (diff)
downloadtxr-8b4578f295cc022e8bf0bb62d1a8cf8673636f27.tar.gz
txr-8b4578f295cc022e8bf0bb62d1a8cf8673636f27.tar.bz2
txr-8b4578f295cc022e8bf0bb62d1a8cf8673636f27.zip
Version 54txr-54
* txr.c (version): Bumped. * txr.1: Bumped version and set date. * configure (txr_ver): Bumped. * RELNOTES: Updated.
-rw-r--r--ChangeLog12
-rw-r--r--RELNOTES20
-rwxr-xr-xconfigure2
-rw-r--r--txr.14
-rw-r--r--txr.c2
5 files changed, 36 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 7d308930..677ca263 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,17 @@
2012-01-21 Kaz Kylheku <kaz@kylheku.com>
+ Version 54
+
+ * txr.c (version): Bumped.
+
+ * txr.1: Bumped version and set date.
+
+ * configure (txr_ver): Bumped.
+
+ * RELNOTES: Updated.
+
+2012-01-21 Kaz Kylheku <kaz@kylheku.com>
+
* debug.c (help): Added missing help for w command.
(debug): In backtrace, show the renaming pairs for unbound
variables (up_p_a_pairs) if they are present.
diff --git a/RELNOTES b/RELNOTES
index eb620b2c..15491c13 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,3 +1,23 @@
+ TXR 54
+ 2011-01-21
+
+
+ Features
+
+ - Improved debugger:
+ - step into
+ - step over
+ - finish
+ - backtrace for pattern and TXR Lisp functions.
+ - dump more complete environment.
+
+ - Debugging support can be disabled at compile time: configure
+ with --no-debug-support.
+
+ - New lazy append function (append*).
+
+
+
TXR 53
2011-01-11
diff --git a/configure b/configure
index 46ca4aa5..f85ee7b2 100755
--- a/configure
+++ b/configure
@@ -357,7 +357,7 @@ fi
#
-txr_ver=53
+txr_ver=54
#
# The all important banner.
diff --git a/txr.1 b/txr.1
index 94435cd3..6176e5d3 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 2012-01-07 "Utility Commands" "Txr Text Extractor" "Kaz Kylheku"
+.TH "TXR" 1 2012-01-21 "Utility Commands" "Txr Text Extractor" "Kaz Kylheku"
.SH NAME
-txr \- text extractor (version 53)
+txr \- text extractor (version 54)
.SH SYNOPSIS
.B txr [ options ] query-file { data-file }*
.sp
diff --git a/txr.c b/txr.c
index 5e18871e..261dce87 100644
--- a/txr.c
+++ b/txr.c
@@ -43,7 +43,7 @@
#include "debug.h"
#include "txr.h"
-const wchli_t *version = wli("53");
+const wchli_t *version = wli("54");
const wchar_t *progname = L"txr";
const wchar_t *spec_file = L"stdin";
val spec_file_str;