diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-08-13 19:30:37 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-08-13 19:30:37 -0700 |
commit | dc35aae3bfb0f5502d0848d9ad6478480a9ddd37 (patch) | |
tree | 8543064c549be0c395a66038ef8cd9914cafe0d8 /match.c | |
parent | e05a39e67e5259263ecc4955f3efa8724d887e90 (diff) | |
download | txr-dc35aae3bfb0f5502d0848d9ad6478480a9ddd37.tar.gz txr-dc35aae3bfb0f5502d0848d9ad6478480a9ddd37.tar.bz2 txr-dc35aae3bfb0f5502d0848d9ad6478480a9ddd37.zip |
Uprooting stupidities in handling of output variables.
* parser.y (o_elems_transform): Remove useless function which
was only unwrapping the strange parse of output vars.
(o_elems_opt, rep_elem, quasilit, wordsqlit): Eliminate
o_elems_transform call.
(o_var, q_var): Eliminate the phrase structure rules which
match an extra o_elem or quasi_item, and which incorporate
them into the var syntax tree element. Place the modifiers
into the third position, not fourth.
* eval.c (subst_vars): Eliminate handling of "pat"
element. Actually that was not even there thanks to
o_elems_transform being applied: dead code. Pull modifiers
from the third element of the var form now, not fourth.
* match.c (subst_vars): Similar changes as in the match.c
subst_vars function. Here the pat variable is even more obviously
useless; if it is not nil, it is just punted back to the spec.
Diffstat (limited to 'match.c')
-rw-r--r-- | match.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -1392,8 +1392,7 @@ static val subst_vars(val spec, val bindings, val filter) if (sym == var_s) { val expr = second(elem); - val pat = third(elem); - val modifiers = fourth(elem); + val modifiers = third(elem); val str = txeval(spec, expr, bindings); /* If the object is a list, we let format_field deal with the @@ -1402,9 +1401,6 @@ static val subst_vars(val spec, val bindings, val filter) if (!stringp(str) && !listp(str)) str = tostringp(str); - if (pat) - spec = cons(pat, rest(spec)); - if (modifiers) { spec = cons(format_field(str, modifiers, filter, curry_123_2(func_n3(txeval), spec, bindings)), |