diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-08-28 21:57:07 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-08-28 21:57:07 -0700 |
commit | f56417ae0bf59add72c70eea9a408fcaa9cb9589 (patch) | |
tree | 0f24d83b94058111495f54b4ef58a147044551e7 /eval.c | |
parent | 5fdd5b1289ba4f57d53e92d94eb192c7544499e9 (diff) | |
download | txr-f56417ae0bf59add72c70eea9a408fcaa9cb9589.tar.gz txr-f56417ae0bf59add72c70eea9a408fcaa9cb9589.tar.bz2 txr-f56417ae0bf59add72c70eea9a408fcaa9cb9589.zip |
Fix bugs in new quasiquote optimization.
* eval.c (qquote_init): Stricter quote_form_p_f test
function: reject the quote form if it isn't a proper
list of two elements.
(optimize_qquote_form): Extract all arguments of list
forms and catenate them with mapcan, rather than
assuming that they have one argument. This wrong
assumption breaks ,,*(list ...) interpolation,
for instance.
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -2635,6 +2635,8 @@ static void qquote_init(void) chain(car_f, eq_to_list_f, nao), nao); quote_form_p_f = andf(consp_f, + chain(cdr_f, consp_f, nao), + chain(cdr_f, cdr_f, null_f, nao), chain(car_f, eq_to_quote_f, nao), nao); xform_listed_quote_f = iffi(andf(consp_f, @@ -2663,12 +2665,12 @@ static val optimize_qquote_form(val form) if (all_satisfy(args, list_form_p_f, nil)) { sym = list_s; - args = mapcar(second_f, args); + args = mappend(cdr_f, args); } else { val blargs = butlast(args); if (all_satisfy(blargs, list_form_p_f, nil)) - return rlcp_tree(cons(list_star_s, nappend2(mapcar(second_f, blargs), + return rlcp_tree(cons(list_star_s, nappend2(mappend(cdr_f, blargs), last(args))), form); } } |