summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-08-29 06:04:25 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-08-29 06:04:25 -0700
commit78051a38fa761c03ee031797ebe39291448bb930 (patch)
tree341bdaaa8163471ce9756551c975d2e1b286eece
parentf4490cde15518f1cc491ab31a13d25d37cb080c4 (diff)
downloadtxr-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.y6
1 files changed, 4 insertions, 2 deletions
diff --git a/parser.y b/parser.y
index 92b489d4..655db7ea 100644
--- a/parser.y
+++ b/parser.y
@@ -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);