diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2012-01-11 19:36:27 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2012-01-11 19:36:27 -0800 |
commit | 989f550a28fb8ac7164da38018ca43b542d1a086 (patch) | |
tree | bc70b7464dc2620b0be96266cbfc16564f7175e9 | |
parent | b765dfd93a0499de9781ff50efdc989cf06bba03 (diff) | |
download | txr-989f550a28fb8ac7164da38018ca43b542d1a086.tar.gz txr-989f550a28fb8ac7164da38018ca43b542d1a086.tar.bz2 txr-989f550a28fb8ac7164da38018ca43b542d1a086.zip |
Version 53
* txr.c (version): Bumped.
* txr.1: Bumped version and set date.
* configure (txr_ver): Bumped.
* RELNOTES: Updated.
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | RELNOTES | 24 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | txr.1 | 2 | ||||
-rw-r--r-- | txr.c | 2 |
5 files changed, 39 insertions, 3 deletions
@@ -1,5 +1,17 @@ 2012-01-11 Kaz Kylheku <kaz@kylheku.com> + Version 53 + + * txr.c (version): Bumped. + + * txr.1: Bumped version and set date. + + * configure (txr_ver): Bumped. + + * RELNOTES: Updated. + +2012-01-11 Kaz Kylheku <kaz@kylheku.com> + TXR Lisp regression in C global variables. * eval.c (struct c_var): New struct type. @@ -1,3 +1,27 @@ + TXR 53 + 2011-01-11 + + + Features + + - In variable substitutions in output and quasiliterals, the field + width expression is now evaluated. + + - TXR Lisp: + + - New operators and functions for generating lazy lists more conveniently. + - lazy mapcar and mappend: return lazy list. + - delay and force operators. + - parallel iteration/collection over lists. + - list-str function for splitting string into list of characters. + + Bugs + + - Fixed global buitin variables, broken in 52. Properly implemented + intended fix. + + + TXR 52 2011-01-07 @@ -352,7 +352,7 @@ fi # -txr_ver=51 +txr_ver=53 # # The all important banner. @@ -23,7 +23,7 @@ .TH "TXR" 1 2012-01-07 "Utility Commands" "Txr Text Extractor" "Kaz Kylheku" .SH NAME -txr \- text extractor (version 52) +txr \- text extractor (version 53) .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("51"); +const wchli_t *version = wli("53"); const wchar_t *progname = L"txr"; const wchar_t *spec_file = L"stdin"; val spec_file_str; |