summaryrefslogtreecommitdiffstats
path: root/parser.y
diff options
context:
space:
mode:
Diffstat (limited to 'parser.y')
-rw-r--r--parser.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/parser.y b/parser.y
index 4c402965..1aec65d5 100644
--- a/parser.y
+++ b/parser.y
@@ -903,7 +903,7 @@ quasi_item : litchars { $$ = lit_char_helper($1); }
| o_var { $$ = $1; }
| METANUM { $$ = cons(var_s, cons($1, nil));
rl($$, num(lineno)); }
- | list { $$ = rlcp(cons(expr_s, expand($1)), $1); }
+ | list { $$ = rlcp(cons(expr_s, $1), $1); }
;
litchars : LITCHAR { $$ = cons(chr($1), nil); }