summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-02-24 02:23:52 -0800
committerKaz Kylheku <kaz@kylheku.com>2014-02-24 02:23:52 -0800
commit5fac42709f969df55106d330238f8553ddc07019 (patch)
tree6ce698dedc0522db03d6f2c78f835f5e76ec5f36 /ChangeLog
parent74dbd0dc965618dd574a74368439c5804d198346 (diff)
downloadtxr-5fac42709f969df55106d330238f8553ddc07019.tar.gz
txr-5fac42709f969df55106d330238f8553ddc07019.tar.bz2
txr-5fac42709f969df55106d330238f8553ddc07019.zip
* lib.c (obj_print, obj_pprint): Render quasi-quote hash and
vector literals using their original notation. * parser.y (unquotes_occur): Takes new argument, level. Only finds quotes which are at the given quasiquoting level. Finally, this is the right semantics. In the first version of this function, we were not eager enough: we neglected to find unquotes that were wrapped in nested quasiquotes. Then we were too eager: finding any unquotes, even ones belonging to the inner backquotes. (vector, hash, choose_quote): Pass zero to unquotes_occur function.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog13
1 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 267ea79a..cc335b54 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,18 @@
2014-02-24 Kaz Kylheku <kaz@kylheku.com>
+ * lib.c (obj_print, obj_pprint): Render quasi-quote hash and
+ vector literals using their original notation.
+
+ * parser.y (unquotes_occur): Takes new argument, level.
+ Only finds quotes which are at the given quasiquoting level.
+ Finally, this is the right semantics. In the first version of this
+ function, we were not eager enough: we neglected to find unquotes
+ that were wrapped in nested quasiquotes. Then we were too eager:
+ finding any unquotes, even ones belonging to the inner backquotes.
+ (vector, hash, choose_quote): Pass zero to unquotes_occur function.
+
+2014-02-24 Kaz Kylheku <kaz@kylheku.com>
+
* eval.c (expand_qquote): Bugfix. Was not handling an unquote
in the dotted position: (qquote x1 .. xn . (unquote form)),
which looks like the structure (qquote x1 .. xn unquote form).