summaryrefslogtreecommitdiffstats
path: root/parser.y
diff options
context:
space:
mode:
Diffstat (limited to 'parser.y')
-rw-r--r--parser.y4
1 files changed, 0 insertions, 4 deletions
diff --git a/parser.y b/parser.y
index 3391c5f3..70f22d91 100644
--- a/parser.y
+++ b/parser.y
@@ -848,10 +848,6 @@ struct : HASH_S list { if (unquotes_occur($2, 0))
range : HASH_R list { if (length($2) != two)
yyerr("range literal needs two elements");
-
- if (unquotes_occur($2, 0))
- $$ = rl(cons(rcons_s, $2), num($1));
- else
{ val range = rcons(first($2), second($2));
$$ = rl(range, num($1)); } }
;