diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-01-26 21:29:54 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-01-26 21:29:54 -0800 |
commit | 50f33cf71ef9d4b6dbade885667ff0c075dd77f4 (patch) | |
tree | f6306dbc7706535f9ee696e2202628d365566827 | |
parent | 466f2a5842b131b0d94b9a97e78da709920a2c06 (diff) | |
download | txr-50f33cf71ef9d4b6dbade885667ff0c075dd77f4.tar.gz txr-50f33cf71ef9d4b6dbade885667ff0c075dd77f4.tar.bz2 txr-50f33cf71ef9d4b6dbade885667ff0c075dd77f4.zip |
bugfix: :filter not handled right in output var.
This issue was fixed in quasiliterals only. Because of the
implementation duplicity between output vars and quasiliteral
vars, we have to fix it in two places.
When the parser handles quasiliterals, it builds vars without
expanding the contents. The quasiliteral expander takes care
of recognzing (sys:var ...) forms and properly handles them
and their attributes, avoiding expanding the argument of
a :filter keyword.
When the parser handles an o_var that is a braced variable,
it calls expand on its contents right there, then builds the
(sys:var ...) form from the expanded contents.
Why don't we just call expand_quasi in the o_var rule to have
a single (sys:var ...) form expanded exactly how it is
done in quasiliterals.
* eval.c (expand_quasi): Change static function to external.
* eval.c (expand_quasi): Declared.
* parser.y (o_var): Construct an unexpanded (sys:var ...)
form, and then wrap it in a one-element list. This is a
de-facto quasi-items list, which can be expanded by
expand_quasi. Then we pull the car of the expansion to
get our expanded var.
-rw-r--r-- | eval.c | 2 | ||||
-rw-r--r-- | eval.h | 1 | ||||
-rw-r--r-- | parser.y | 7 |
3 files changed, 5 insertions, 5 deletions
@@ -3182,7 +3182,7 @@ static val expand_var_mods(val mods, val menv) } } -static val expand_quasi(val quasi_forms, val menv) +val expand_quasi(val quasi_forms, val menv) { if (nilp(quasi_forms)) { return nil; @@ -70,6 +70,7 @@ val eval(val form, val env, val ctx_form); val eval_intrinsic(val form, val env); val format_field(val string_or_list, val modifier, val filter, val eval_fun); val subst_vars(val forms, val env, val filter); +val expand_quasi(val quasi_forms, val menv); val load(val target); val expand(val form, val menv); val expand_forms(val forms, val menv); @@ -782,10 +782,9 @@ o_var : SYMTOK { val expr = symhlpr($1, nil); expand_meta($2, nil), expand_meta($3, nil), nao); } else - { $$ = list(var_s, - expand($2, nil), - expand_forms($3, nil), nao); } - rl($$, num(parser->lineno)); } + { val quasi_var = list(var_s, $2, $3, nao); + val quasi_items = cons(quasi_var, nil); + $$ = car(expand_quasi(quasi_items, nil)); } } | SYMTOK error { $$ = nil; yybadtok(yychar, lit("variable spec")); } ; |