summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-07-24 18:23:51 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-07-24 18:23:51 -0700
commit572f1fcfd4a2399395c2ce37d892f53117b84222 (patch)
tree1d070e483a8a84dce7616a74ebb88b607eb5b8c3
parent5243b933a609af037a5e39f76ea7d61b07bd1343 (diff)
downloadtxr-572f1fcfd4a2399395c2ce37d892f53117b84222.tar.gz
txr-572f1fcfd4a2399395c2ce37d892f53117b84222.tar.bz2
txr-572f1fcfd4a2399395c2ce37d892f53117b84222.zip
* tests/012/ifa.tl: New test for it being bound to a place.
-rw-r--r--ChangeLog4
-rw-r--r--tests/012/ifa.tl5
2 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 8e083b18..933ab73d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2015-07-24 Kaz Kylheku <kaz@kylheku.com>
+ * tests/012/ifa.tl: New test for it being bound to a place.
+
+2015-07-24 Kaz Kylheku <kaz@kylheku.com>
+
Bugfix: place-form-p must expand place macros.
* share/txr/stdlib/place.tl (place-form-p): Take
diff --git a/tests/012/ifa.tl b/tests/012/ifa.tl
index 64fc6793..214f752b 100644
--- a/tests/012/ifa.tl
+++ b/tests/012/ifa.tl
@@ -37,3 +37,8 @@
((oddp (+ 2 x)) (list it))))
(7))
+(test (let ((l (list 1 2 3)))
+ (ifa (evenp (second l))
+ (inc it))
+ l)
+ (1 3 3))