diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2013-10-07 17:17:41 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2013-10-07 17:17:41 -0700 |
commit | c9c54d9cff66d805462913208345f8f01121b1c8 (patch) | |
tree | 97ce6be76966223134de0271b318cbd629314328 | |
parent | 17c8e76951ea9dc407f07bf2173e8f60ac5efd80 (diff) | |
download | txr-c9c54d9cff66d805462913208345f8f01121b1c8.tar.gz txr-c9c54d9cff66d805462913208345f8f01121b1c8.tar.bz2 txr-c9c54d9cff66d805462913208345f8f01121b1c8.zip |
Version 68.txr-68
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | RELNOTES | 28 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | txr.1 | 4 | ||||
-rw-r--r-- | txr.c | 2 |
5 files changed, 44 insertions, 4 deletions
@@ -1,3 +1,15 @@ +2013-10-07 Kaz Kylheku <kaz@kylheku.com> + + Version 68 + + * txr.c (version): Bumped. + + * txr.1: Bumped version, set date and documented string-cmp. + + * configure (txr_ver): Bumped. + + * RELNOTES: Updated. + 2013-10-06 Kaz Kylheku <kaz@kylheku.com> Improving behavior of op and fixing a bug. @@ -1,3 +1,31 @@ + 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. + + Bugs + + - 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. + + - @rest or a numeric param like @1 can now be + specified in the dot position of the op form, + as in (op foo . @rest). + + + TXR 67 2013-07-13 @@ -380,7 +380,7 @@ fi # -txr_ver=67 +txr_ver=68 # # 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-07-13 "Utility Commands" "Txr Text Processing Language" "Kaz Kylheku" +.TH "TXR" 1 2013-10-07 "Utility Commands" "Txr Text Processing Language" "Kaz Kylheku" .SH NAME -txr \- text processing language (version 67) +txr \- text processing language (version 68) .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("67"); +const wchli_t *version = wli("68"); const wchar_t *progname = L"txr"; const wchar_t *spec_file = L"stdin"; val self_path; |