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 16d761c7..5124ad31 100644
--- a/parser.y
+++ b/parser.y
@@ -731,7 +731,7 @@ n_exprs : n_expr { $$ = rlcp(cons($1, nil), $1); }
n_expr : SYMTOK { $$ = rl(sym_helper($1, t), num(lineno)); }
| METANUM { $$ = cons(var_s, cons($1, nil));
- rl($$, num(lineno)); }
+ rl($$, num(lineno)); }
| NUMBER { $$ = $1; }
| list { $$ = $1; }
| vector { $$ = $1; }