diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-01-08 07:43:27 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-01-08 07:43:27 -0800 |
commit | 0b86366870e0a1e45955881a2d3206175061271e (patch) | |
tree | 26e5e6bb9bb63a580b03329594ce552228ce0ff5 | |
parent | b98e7e641893ca98e34e9f89a55ce1a21a7ace2b (diff) | |
download | txr-0b86366870e0a1e45955881a2d3206175061271e.tar.gz txr-0b86366870e0a1e45955881a2d3206175061271e.tar.bz2 txr-0b86366870e0a1e45955881a2d3206175061271e.zip |
Version 73txr-73
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | RELNOTES | 17 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | txr.1 | 4 | ||||
-rw-r--r-- | txr.c | 2 |
5 files changed, 33 insertions, 4 deletions
@@ -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 @@ -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 @@ -386,7 +386,7 @@ fi # -txr_ver=72 +txr_ver=73 # # The all important banner. @@ -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 @@ -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; |