diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-02-02 01:35:56 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-02-02 01:35:56 -0800 |
commit | 97b07f495505f5e3b9b0e99e8d024d85eedf0952 (patch) | |
tree | e7db26d3b43baaacc4d52f8f99008b044e061b86 /eval.c | |
parent | 7ff372554e299753eace449f2e634de97ac38f7f (diff) | |
download | txr-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.c | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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; } |