diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-01-13 22:14:56 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-01-13 22:14:56 -0800 |
commit | 4433aa4b693a9d0246788aff9acb12a8470edf6f (patch) | |
tree | bd53e2e17114cf6462faaa845bb574e04faa242a /eval.c | |
parent | 487e5f4c8c11ba9c1691b1cdd9723311e7b58c7a (diff) | |
download | txr-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.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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); |