summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-01-08 07:43:27 -0800
committerKaz Kylheku <kaz@kylheku.com>2014-01-08 07:43:27 -0800
commit0b86366870e0a1e45955881a2d3206175061271e (patch)
tree26e5e6bb9bb63a580b03329594ce552228ce0ff5
parentb98e7e641893ca98e34e9f89a55ce1a21a7ace2b (diff)
downloadtxr-0b86366870e0a1e45955881a2d3206175061271e.tar.gz
txr-0b86366870e0a1e45955881a2d3206175061271e.tar.bz2
txr-0b86366870e0a1e45955881a2d3206175061271e.zip
Version 73txr-73
-rw-r--r--ChangeLog12
-rw-r--r--RELNOTES17
-rwxr-xr-xconfigure2
-rw-r--r--txr.14
-rw-r--r--txr.c2
5 files changed, 33 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index ecfc54cd..81684acb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2013-01-08 Kaz Kylheku <kaz@kylheku.com>
+
+ Version 73
+
+ * txr.c (version): Bumped.
+
+ * txr.1: Bumped version and set date.
+
+ * configure (txr_ver): Bumped.
+
+ * RELNOTES: Updated.
+
2014-01-07 Kaz Kylheku <kaz@kylheku.com>
The lisp-parse function can now be called multiple times
diff --git a/RELNOTES b/RELNOTES
index 24c96412..421b9537 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,3 +1,20 @@
+ TXR 73
+ 2014-01-08
+
+
+ Features
+
+ - The new lisp-parse function scans TXR Lisp expressions at run-time
+ out of strings and streams, which means that TXR can now more easily keep
+ persistent, complex data in text files.
+
+ Bugs
+
+ - Fixed signal-handling-related performance issue caused by excessive
+ calls to the sigprocmask function.
+
+
+
TXR 72
2013-12-17
diff --git a/configure b/configure
index 602d8a36..a08d9ab4 100755
--- a/configure
+++ b/configure
@@ -386,7 +386,7 @@ fi
#
-txr_ver=72
+txr_ver=73
#
# The all important banner.
diff --git a/txr.1 b/txr.1
index fa0ee664..b93da15e 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 2013-12-17 "Utility Commands" "Txr Text Processing Language" "Kaz Kylheku"
+.TH "TXR" 1 2014-01-08 "Utility Commands" "Txr Text Processing Language" "Kaz Kylheku"
.SH NAME
-txr \- text processing language (version 72)
+txr \- text processing language (version 73)
.SH SYNOPSIS
.B txr [ options ] query-file { data-file }*
.sp
diff --git a/txr.c b/txr.c
index b8888c6a..15fc4ab1 100644
--- a/txr.c
+++ b/txr.c
@@ -46,7 +46,7 @@
#include "syslog.h"
#include "txr.h"
-const wchli_t *version = wli("72");
+const wchli_t *version = wli("73");
const wchar_t *progname = L"txr";
const wchar_t *spec_file = L"stdin";
val self_path;