summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-08-28 21:57:07 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-08-28 21:57:07 -0700
commitf56417ae0bf59add72c70eea9a408fcaa9cb9589 (patch)
tree0f24d83b94058111495f54b4ef58a147044551e7 /eval.c
parent5fdd5b1289ba4f57d53e92d94eb192c7544499e9 (diff)
downloadtxr-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.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/eval.c b/eval.c
index 1368a422..3f4f606b 100644
--- a/eval.c
+++ b/eval.c
@@ -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);
}
}