From: helly Date: Mon, 5 Jun 2006 22:34:01 +0000 (+0000) Subject: - Limit differences on bootstrap file (by changing to old layout) X-Git-Tag: 0.13.6~269 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b3c29358f8997513bec95e7afb8e8a4003e47777;p=re2c - Limit differences on bootstrap file (by changing to old layout) --- diff --git a/re2c/parser.y b/re2c/parser.y index 7e903a6d..37885f8a 100644 --- a/re2c/parser.y +++ b/re2c/parser.y @@ -93,16 +93,9 @@ decl : ID '=' expr ';' in->fatal("sym already defined"); $1->re = $3; } | CONFIG '=' VALUE ';' - { - in->config(*$1, *$3); - delete $1; - delete $3; - } + { in->config(*$1, *$3); delete $1; delete $3; } | CONFIG '=' NUMBER ';' - { - in->config(*$1, $3); - delete $1; - } + { in->config(*$1, $3); delete $1; } ; decl : ID '=' expr '/'