summaryrefslogtreecommitdiffstats
path: root/RELNOTES
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-07-22 00:59:22 -0700
committerKaz Kylheku <kaz@kylheku.com>2014-07-22 00:59:22 -0700
commitf2d83d19a09f68864209cc1568a59be70a7bfdbc (patch)
treeda632dd3ab2494d2983e616dde1fcb2eaf98e88e /RELNOTES
parente0d8ff5ebd953e61f6e201a0b68c7ce7bccdfcd8 (diff)
downloadtxr-f2d83d19a09f68864209cc1568a59be70a7bfdbc.tar.gz
txr-f2d83d19a09f68864209cc1568a59be70a7bfdbc.tar.bz2
txr-f2d83d19a09f68864209cc1568a59be70a7bfdbc.zip
* RELNOTES: Updated.
* configure, txr.1: Bumped version. * share/txr/stdlib/ver.txr: Likewise * arith.c (log2): Change to static.
Diffstat (limited to 'RELNOTES')
-rw-r--r--RELNOTES46
1 files changed, 46 insertions, 0 deletions
diff --git a/RELNOTES b/RELNOTES
index 1d330fe6..e363882a 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,3 +1,49 @@
+ TXR 93
+ 2014-07-22
+
+
+ Features
+
+ - New list munging functions interpose, mapdo, and juxt.
+
+ - New macros caseq, caseql and casequal based on Lisp's case construct.
+
+ - New math function log2 for computing base 2 logarithm.
+
+ - New function get-lines for obtaining list of lines from a stream.
+ Actually this is not new; it is a nice synonym for lazy-stream-cons.
+
+ - New functions put-lines and put-strings.
+
+ - Missing function lconsp added for testing whether an object is
+ a lazy cons.
+
+ - Documented existing function hash-construct.
+
+ - search-str now supports a negative starting position, which counts from the
+ tail of the string.
+
+ - The division function / can now be used with one argument, denoting
+ the reciprocal operation.
+
+ Bugs
+
+ - Bindings created using -D command line option are now visible to code
+ executed via -e or -p later in the command line.
+
+ - Fixed broken @(eol) directive; was behaving as a complete match, so that
+ subsequent directives are ignored.
+
+ - Obscure bug-fixes in @(do) and @(require), involving code that invokes
+ pattern funcions, and the visibily of bindings.
+
+ - Fixed hash-construct so it correctly works on an empty vector.
+
+ - Alternative stack (sigaltstack) is now automatically used for SIGBUS
+ handlers, not only SIGSEGV.
+
+
+
TXR 92
2014-07-11