diff options
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | RELNOTES | 22 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | share/txr/stdlib/ver.txr | 2 | ||||
-rw-r--r-- | txr.1 | 4 | ||||
-rw-r--r-- | txr.vim | 17 |
6 files changed, 46 insertions, 13 deletions
@@ -1,3 +1,15 @@ +2014-08-14 Kaz Kylheku <kaz@kylheku.com> + + Version 96. + + * RELNOTES: Updated. + + * configure, txr.1: Bumped version. + + * share/txr/stdlib/ver.txr: Likewise + + * txr.vim: Regenerated. + 2014-08-13 Kaz Kylheku <kaz@kylheku.com> Uprooting stupidities in handling of output variables. @@ -1,4 +1,24 @@ - TXR 94 + TXR 96 + 2014-08-14 + + + Features + + - Big change in pattern language in the variable binding logic. + When unbound variables are followed by directives, then the full right hand + context to the end of the line is used to determine the binding. + + - Internal functions related to tries exposed: trie-lookup-begin, + trie-value-at, trie-lookup-feed-char. + + Bugs + + - Fixed bug in ret operator: was generating fixed arity functions + rather than n-ary as documented. + + + + TXR 95 2014-08-07 @@ -408,7 +408,7 @@ fi # -txr_ver=95 +txr_ver=96 # # The all important banner. diff --git a/share/txr/stdlib/ver.txr b/share/txr/stdlib/ver.txr index e8816874..399e54a3 100644 --- a/share/txr/stdlib/ver.txr +++ b/share/txr/stdlib/ver.txr @@ -1 +1 @@ -@(do (defvar *lib-version* 95)) +@(do (defvar *lib-version* 96)) @@ -21,9 +21,9 @@ .\"IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED .\"WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -.TH "TXR" 1 2014-08-07 "Utility Commands" "TXR Text Processing Language" "Kaz Kylheku" +.TH "TXR" 1 2014-08-14 "Utility Commands" "TXR Text Processing Language" "Kaz Kylheku" .SH NAME -txr \- text processing language (version 95) +txr \- text processing language (version 96) .SH SYNOPSIS .B txr [ options ] query-file { data-file }* .sp @@ -180,14 +180,15 @@ syn keyword txl_keyword contained time-fields-local time-fields-utc time-string- syn keyword txl_keyword contained time-usec tofloat toint tok-str syn keyword txl_keyword contained tok-where tostring tostringp transpose syn keyword txl_keyword contained tree-bind tree-case tree-find trie-add -syn keyword txl_keyword contained trie-compress trim-str true trunc -syn keyword txl_keyword contained tuples typeof unget-byte unget-char -syn keyword txl_keyword contained uniq unless unquote until -syn keyword txl_keyword contained upcase-str update url-decode url-encode -syn keyword txl_keyword contained usleep uw-protect vec vec-push -syn keyword txl_keyword contained vec-set-length vecref vector vector-list -syn keyword txl_keyword contained vectorp when where while -syn keyword txl_keyword contained with-saved-vars zerop zip +syn keyword txl_keyword contained trie-compress trie-lookup-begin trie-lookup-feed-char trie-value-at +syn keyword txl_keyword contained trim-str true trunc tuples +syn keyword txl_keyword contained typeof unget-byte unget-char uniq +syn keyword txl_keyword contained unless unquote until upcase-str +syn keyword txl_keyword contained update url-decode url-encode usleep +syn keyword txl_keyword contained uw-protect vec vec-push vec-set-length +syn keyword txl_keyword contained vecref vector vector-list vectorp +syn keyword txl_keyword contained when where while with-saved-vars +syn keyword txl_keyword contained zerop zip syn match txr_error "@[\t ]*[*]\?[\t ]*." syn match txr_nested_error "[^\t `]\+" contained |