summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-02-02 01:35:56 -0800
committerKaz Kylheku <kaz@kylheku.com>2014-02-02 01:35:56 -0800
commit97b07f495505f5e3b9b0e99e8d024d85eedf0952 (patch)
treee7db26d3b43baaacc4d52f8f99008b044e061b86 /eval.c
parent7ff372554e299753eace449f2e634de97ac38f7f (diff)
downloadtxr-97b07f495505f5e3b9b0e99e8d024d85eedf0952.tar.gz
txr-97b07f495505f5e3b9b0e99e8d024d85eedf0952.tar.bz2
txr-97b07f495505f5e3b9b0e99e8d024d85eedf0952.zip
* eval.c (do_eval_args): If the dotted position of the argument
list evaluates to a vector, then convert the vector to a list. * txr.1: Document compound forms, and how they allow the dotted position and how it may be a vector.
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/eval.c b/eval.c
index 5d4b4bcc..94332315 100644
--- a/eval.c
+++ b/eval.c
@@ -428,8 +428,12 @@ static val do_eval_args(val form, val env, val ctx_form,
list_collect_decl (values, ptail);
for (; consp(form); form = cdr(form))
ptail = list_collect(ptail, do_eval(car(form), env, ctx_form, lookup));
- if (form)
- ptail = list_collect_append(ptail, do_eval(form, env, ctx_form, lookup));
+ if (form) {
+ val dotpos = do_eval(form, env, ctx_form, lookup);
+ ptail = list_collect_append(ptail, if3(vectorp(dotpos),
+ list_vector(dotpos),
+ dotpos));
+ }
return values;
}