summaryrefslogtreecommitdiffstats
path: root/RELNOTES
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-02-27 21:21:33 -0800
committerKaz Kylheku <kaz@kylheku.com>2014-02-27 21:21:33 -0800
commit200ce0286922a5cb3ebc1b13744bb1e5d3f4b0d9 (patch)
treeaabf8ffce76cda9e3ca3885bd645f9549a466164 /RELNOTES
parentfa7f323c2bdbcd307bf16b09cf635cf8e10d412b (diff)
downloadtxr-200ce0286922a5cb3ebc1b13744bb1e5d3f4b0d9.tar.gz
txr-200ce0286922a5cb3ebc1b13744bb1e5d3f4b0d9.tar.bz2
txr-200ce0286922a5cb3ebc1b13744bb1e5d3f4b0d9.zip
Version 82.txr-82
Diffstat (limited to 'RELNOTES')
-rw-r--r--RELNOTES32
1 files changed, 32 insertions, 0 deletions
diff --git a/RELNOTES b/RELNOTES
index 68e00550..f6c396f1 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,3 +1,35 @@
+ TXR 82
+ 2014-02-27
+
+
+ Features
+
+ - Intuitive behavior in various sequence processing in the library:
+ don't try to output a string if the resulting items are not characters,
+ and then fail; make a list.
+
+ - All operators that were implemented as special code expanding hacks
+ in the TXR Lisp code walker are have been converted to intrinsic
+ macros. Only a few bona-fide special forms are subject to minor
+ code transformations.
+
+ - New generation macro called "gun". (gun (read-line stream))
+ produces a lazy list of lines from a stream. gun, which stands
+ for "generate until nil", evaluates the enclosed expression while that
+ expression produces non-nil values, and makes a lazy list out of them.
+
+ - New function copy, for copying sequences.
+
+ - Documentation improvements thanks to Roman Mishin.
+
+ Bugs
+
+ - Regression fix: error thrown on valid floating point constants.
+
+ - Doc bugs: documentation was missing for the delay operator
+ and the length function.
+
+
TXR 81
2014-02-25