diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2013-10-23 08:42:45 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2013-10-23 08:42:45 -0700 |
commit | 81ea9468a992556b21d8cb65e6407dca9dbbfe7f (patch) | |
tree | ae5126022660a6dff403285093320a0ebde35b1c | |
parent | 1ee6aaab0b0bf42576b5c7951805e05e695a7148 (diff) | |
download | txr-81ea9468a992556b21d8cb65e6407dca9dbbfe7f.tar.gz txr-81ea9468a992556b21d8cb65e6407dca9dbbfe7f.tar.bz2 txr-81ea9468a992556b21d8cb65e6407dca9dbbfe7f.zip |
Version 69.txr-69
-rw-r--r-- | ChangeLog | 14 | ||||
-rw-r--r-- | RELNOTES | 40 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | txr.1 | 4 | ||||
-rw-r--r-- | txr.c | 2 |
5 files changed, 43 insertions, 19 deletions
@@ -1,3 +1,15 @@ +2013-10-23 Kaz Kylheku <kaz@kylheku.com> + + Version 69 + + * txr.c (version): Bumped. + + * txr.1: Bumped version and set date. + + * configure (txr_ver): Bumped. + + * RELNOTES: Updated. + 2013-10-21 Kaz Kylheku <kaz@kylheku.com> * txr.1: Fixed documentation bug. expt with three or more @@ -31,7 +43,7 @@ * txr.c (version): Bumped. - * txr.1: Bumped version, set date and documented string-cmp. + * txr.1: Bumped version and set date. * configure (txr_ver): Bumped. @@ -1,28 +1,40 @@ + TXR 69 + 2013-10-23 + + + Features + + - Multiple @(output) blocks can now continue on the same output stream, which + is particularly useful if it is a pipe. + + Bugs + + - Fixed errors in documentation for the functions time-string-local, + time-string-utc and expt. + + + TXR 68 2013-10-07 Features - - @(repeat) inside @(output) supports a :vars - parameter, making it possible to declare the - existence of iteration variables that are otherwise - hidden within Lisp code. + - @(repeat) inside @(output) supports a :vars parameter, making it possible + to declare the existence of iteration variables that are otherwise hidden + within Lisp code. Bugs - - Out-of-sequence numeric parameters can be used - in the op operator now, like (op foo @2) - where @1 is absent. + - Out-of-sequence numeric parameters can be used in the op operator now, like + (op foo @2) where @1 is absent. - - The implicit ". @rest" is now added to op forms - only if they do not mention @rest or any numeric - parameters, to prevent unintentional - passing of extra parameters. + - The implicit ". @rest" is now added to op forms only if they do not mention + @rest or any numeric parameters, to prevent unintentional passing of extra + parameters. - - @rest or a numeric param like @1 can now be - specified in the dot position of the op form, - as in (op foo . @rest). + - @rest or a numeric param like @1 can now be specified in the dot position + of the op form, as in (op foo . @rest). @@ -380,7 +380,7 @@ fi # -txr_ver=68 +txr_ver=69 # # 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-10-07 "Utility Commands" "Txr Text Processing Language" "Kaz Kylheku" +.TH "TXR" 1 2013-10-23 "Utility Commands" "Txr Text Processing Language" "Kaz Kylheku" .SH NAME -txr \- text processing language (version 68) +txr \- text processing language (version 69) .SH SYNOPSIS .B txr [ options ] query-file { data-file }* .sp @@ -43,7 +43,7 @@ #include "debug.h" #include "txr.h" -const wchli_t *version = wli("68"); +const wchli_t *version = wli("69"); const wchar_t *progname = L"txr"; const wchar_t *spec_file = L"stdin"; val self_path; |