summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-04-26 07:40:41 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-04-26 07:40:41 -0700
commit80adc0257a941ccda132ca04a15ed98727fd8199 (patch)
treee22841e130cd8defe48801c2676d28f5e45af619 /share
parent6aa7f5abfb2e4c396b7f76ded0ef7dbded89c957 (diff)
downloadtxr-80adc0257a941ccda132ca04a15ed98727fd8199.tar.gz
txr-80adc0257a941ccda132ca04a15ed98727fd8199.tar.bz2
txr-80adc0257a941ccda132ca04a15ed98727fd8199.zip
matcher: quasi match incorrectly treats nil as bound.
* share/txr/stdlib/match.tl (expand-quasi-match): bound-p local function must return nil if the symbol is nil. * share/txr/stdlib/match.tl: New test cases testing that @nil is treated as an unbound variable in the non-consecutive-variables test. Also, making duplicates of certain tests that start with a text match and sticking @nil as the first element into them, so that the text match is forced to be the second item.
Diffstat (limited to 'share')
-rw-r--r--share/txr/stdlib/match.tl2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/txr/stdlib/match.tl b/share/txr/stdlib/match.tl
index d3d89702..0e48773f 100644
--- a/share/txr/stdlib/match.tl
+++ b/share/txr/stdlib/match.tl
@@ -836,7 +836,7 @@
(labels ((bound-p (vlist vars sym)
(cond
((bindable sym) (or (member sym vars) vlist.(exists sym)))
- ((null sym) t)
+ ((null sym) nil)
((compile-error *match-form* "bindable symbol expected, not ~s"
sym))))
(normalize (args)