summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-01-13 22:14:56 -0800
committerKaz Kylheku <kaz@kylheku.com>2016-01-13 22:14:56 -0800
commit4433aa4b693a9d0246788aff9acb12a8470edf6f (patch)
treebd53e2e17114cf6462faaa845bb574e04faa242a /eval.c
parent487e5f4c8c11ba9c1691b1cdd9723311e7b58c7a (diff)
downloadtxr-4433aa4b693a9d0246788aff9acb12a8470edf6f.tar.gz
txr-4433aa4b693a9d0246788aff9acb12a8470edf6f.tar.bz2
txr-4433aa4b693a9d0246788aff9acb12a8470edf6f.zip
bugfix: no location info for unbound var in dohash.
* eval.c (do_expand): Add missing rlcp in the construction of the return value of the clause which expands a dohash. Let's make it a rlcp_tree. Test case: (dohash (a b c) d e) with c unbound.
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/eval.c b/eval.c
index 43b49bb2..e83a8954 100644
--- a/eval.c
+++ b/eval.c
@@ -3466,11 +3466,11 @@ tail:
if (hashform == hashform_ex && resform == resform_ex && body == body_ex)
return form;
- return cons(sym, cons(cons(keysym,
- cons(valsym,
- cons(hashform_ex,
- cons(resform_ex, nil)))),
- body_ex));
+ return rlcp_tree(cons(sym, cons(cons(keysym,
+ cons(valsym,
+ cons(hashform_ex,
+ cons(resform_ex, nil)))),
+ body_ex)), form);
} else if (sym == quasi_s) {
val quasi = rest(form);
val quasi_ex = expand_quasi(quasi, menv);