diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-08-29 06:04:25 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-08-29 06:04:25 -0700 |
commit | 78051a38fa761c03ee031797ebe39291448bb930 (patch) | |
tree | 341bdaaa8163471ce9756551c975d2e1b286eece | |
parent | f4490cde15518f1cc491ab31a13d25d37cb080c4 (diff) | |
download | txr-78051a38fa761c03ee031797ebe39291448bb930.tar.gz txr-78051a38fa761c03ee031797ebe39291448bb930.tar.bz2 txr-78051a38fa761c03ee031797ebe39291448bb930.zip |
Fix emulation of TXR 135 @(if) semantics.
* parser.y (if_clause, elif_clauses_opt):
The previous commit changes the emulation of old @(if)
behavior, since expressions obtained via the n_exprs_opt
grammar phrase are not subject to expand_meta.
We can counteract this by calling expand_meta in
the compatibility code.
-rw-r--r-- | parser.y | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -367,7 +367,8 @@ if_clause : IF n_exprs_opt ')' elif_clauses_opt else_clause_opt END newl { if (opt_compat && opt_compat <= 136) - { val req = rlcp(cons(require_s, $2), $2); + { val xexp = expand_meta($2, nil); + val req = rlcp(cons(require_s, xexp), $2); val iff = rlcp(cons(cons(cons(req, nil), $5), nil), $2); val elifs = $6; val els = cons($7, nil); @@ -391,7 +392,8 @@ if_clause : IF n_exprs_opt ')' elif_clauses_opt : ELIF n_exprs_opt ')' newl clauses_opt elif_clauses_opt { if (opt_compat && opt_compat <= 136) - { val req = rlcp(cons(require_s, $2), $2); + { val xexp = expand_meta($2, nil); + val req = rlcp(cons(require_s, xexp), $2); $$ = cons(cons(cons(req, nil), $5), $6); } else { val expr = expand(car($2), nil); |