diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2012-01-26 20:46:50 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2012-01-26 20:46:50 -0800 |
commit | 7002405ab17218baa4e2366a47860a5770d18650 (patch) | |
tree | b94af89ef4ebc5e3a98b5d612d484fa40afa1332 | |
parent | befe64b826765e8f9e6834fb482c8bfbbf19b8a5 (diff) | |
download | txr-7002405ab17218baa4e2366a47860a5770d18650.tar.gz txr-7002405ab17218baa4e2366a47860a5770d18650.tar.bz2 txr-7002405ab17218baa4e2366a47860a5770d18650.zip |
Version 55txr-055
* 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 | 23 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | txr.1 | 4 | ||||
-rw-r--r-- | txr.c | 2 |
5 files changed, 39 insertions, 4 deletions
@@ -1,5 +1,17 @@ 2012-01-26 Kaz Kylheku <kaz@kylheku.com> + Version 55 + + * txr.c (version): Bumped. + + * txr.1: Bumped version and set date. + + * configure (txr_ver): Bumped. + + * RELNOTES: Updated. + +2012-01-26 Kaz Kylheku <kaz@kylheku.com> + * lib.c (replace_list): Always convert the input items to a list, even in the trivial case that an empty list is being replaced. Allow a string to be the replacement (split into a list of @@ -1,3 +1,26 @@ + TXR 55 + 2011-01-26 + + + Features + + - New square bracket syntax for Lisp-1 like invocation + and array-indexing over lists, vectors, strings and hashes. + + - New a .. b pair syntactic sugar for (cons a b). + Works with array indexing brackets to extract ranges + (slices) from lists, vectors and strings. + + - Indexed elements and slices are assignable. + + - In the pattern language, variables in output templates (output variables) + can be indexed and sliced. + + - Output variables that hold lists are now interpolated with spaces + between, and this can be overridden with any separator string. + + + TXR 54 2011-01-21 @@ -357,7 +357,7 @@ fi # -txr_ver=54 +txr_ver=55 # # 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 2012-01-21 "Utility Commands" "Txr Text Extractor" "Kaz Kylheku" +.TH "TXR" 1 2012-01-26 "Utility Commands" "Txr Text Extractor" "Kaz Kylheku" .SH NAME -txr \- text extractor (version 54) +txr \- text extractor (version 55) .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("54"); +const wchli_t *version = wli("55"); const wchar_t *progname = L"txr"; const wchar_t *spec_file = L"stdin"; val spec_file_str; |