summaryrefslogtreecommitdiffstats
path: root/RELNOTES
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-03-02 22:03:44 -0800
committerKaz Kylheku <kaz@kylheku.com>2014-03-02 22:03:44 -0800
commite23eefb30af6f88ca18887131c547a545c9edbef (patch)
tree3fc505fac8ff133bee3e5b124ce80b07c8c49775 /RELNOTES
parent7807b9cc097e9356217e3071ad1310191dda58fe (diff)
downloadtxr-e23eefb30af6f88ca18887131c547a545c9edbef.tar.gz
txr-e23eefb30af6f88ca18887131c547a545c9edbef.tar.bz2
txr-e23eefb30af6f88ca18887131c547a545c9edbef.zip
Version 83txr-83
* txr.c (version): Bumped. * txr.1: Bumped version, set date. * configure (txr_ver): Bumped. * RELNOTES: Updated * dep.mk: Updated.
Diffstat (limited to 'RELNOTES')
-rw-r--r--RELNOTES35
1 files changed, 35 insertions, 0 deletions
diff --git a/RELNOTES b/RELNOTES
index f6c396f1..7842a720 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -1,3 +1,38 @@
+ TXR 83
+ 2014-03-02
+
+
+ Features
+
+ - The qquote macro is now in the regular user namespace, while the
+ quasiquoting read syntax uses a different macro based on private symbols.
+ So when the read syntax is used, the template can contain the symbols
+ qquote, unquote and splice, even though these are the basis for
+ a quasiquote macro.
+
+ - Diagnosis of attempt to redefine a special operator as a function or macro.
+ Remove the macro when a function of the same name is defined and vice-versa.
+
+ Bugs
+
+ - Fixed bugs in the implementation lexical variable shadowing by symbol
+ macros.
+
+ - Fixed incorrect handling of trailing atoms in quasiquote.
+
+ - Redesigned the implementaton of special variables, and how they integrate
+ with internal C global variables in the interpreter, in order to fix the
+ broken dynamic overriding of the predefined globals.
+
+ - The Lisp-1 style evaluation of the dwim operator or square brackets was not
+ resolving over-ridden special variables correctly, using a lookup method
+ that saw only the global bindings.
+
+ - Fixed missing integration between catenated stream objects and the
+ garbage collector.
+
+
+
TXR 82
2014-02-27