summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog12
-rw-r--r--RELNOTES22
-rwxr-xr-xconfigure2
-rw-r--r--share/txr/stdlib/ver.txr2
-rw-r--r--txr.14
-rw-r--r--txr.vim17
6 files changed, 46 insertions, 13 deletions
diff --git a/ChangeLog b/ChangeLog
index 9100c380..1afb5aa2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/RELNOTES b/RELNOTES
index 35e45d86..85de0764 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -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
diff --git a/configure b/configure
index aa3100fd..15549f0e 100755
--- a/configure
+++ b/configure
@@ -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))
diff --git a/txr.1 b/txr.1
index 6234284f..6691babc 100644
--- a/txr.1
+++ b/txr.1
@@ -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
diff --git a/txr.vim b/txr.vim
index 62b7379a..9efcd856 100644
--- a/txr.vim
+++ b/txr.vim
@@ -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