diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-03-01 00:29:37 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-03-01 00:29:37 -0800 |
commit | 39c7a72827a80326b7095331eceaa67661b2c6b9 (patch) | |
tree | 505f07ca648811032e29fa37661c4ed5491221c3 /eval.c | |
parent | 18efe8b595bc230f6482fafad586d873c12b50d0 (diff) | |
download | txr-39c7a72827a80326b7095331eceaa67661b2c6b9.tar.gz txr-39c7a72827a80326b7095331eceaa67661b2c6b9.tar.bz2 txr-39c7a72827a80326b7095331eceaa67661b2c6b9.zip |
* eval.c (expand_qquote): Another bugfix: not recognizing a trailing
atom that comes out of recursive call, wrapped in (quote ...),
resulting in '(,a . b) expanding to (append 'a . quote b)
rather than (append (list 'a) (quote b)); i.e. (append (list 'a) 'b).
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2034,7 +2034,7 @@ static val expand_qquote(val qquoted_form, val menv) val args = expand_qquote(second(qquoted_form), menv); return rlcp(list(vector_list_s, args, nao), qquoted_form); } else { - val f = car(qquoted_form); + val f = sym; val r = cdr(qquoted_form); val f_ex; val r_ex = expand_qquote(r, menv); @@ -2065,6 +2065,8 @@ static val expand_qquote(val qquoted_form, val menv) r_ex = cons(r_ex, nil); else if (car(r_ex) == append_s) r_ex = cdr(r_ex); + else if (car(r_ex) == quote_s) + r_ex = cons(r_ex, nil); return rlcp(cons(append_s, cons(f_ex, r_ex)), qquoted_form); } } |