]> git.saurik.com Git - bison.git/blobdiff - src/parse-gram.y
tests: enable -Wsign-compare and fix corresponding warnings
[bison.git] / src / parse-gram.y
index 4c87c909ceddc35e5e71e3a39ccc970d2a0f2a72..9a266251d8111c497380a72d3b380302132d5bda 100644 (file)
@@ -661,8 +661,7 @@ value:
   %empty  { $$.kind = muscle_keyword; $$.chars = ""; }
 | ID      { $$.kind = muscle_keyword; $$.chars = $1; }
 | STRING  { $$.kind = muscle_string;  $$.chars = $1; }
-| "{...}" { $$.kind = muscle_code;
-            $$.chars = translate_code_braceless ($1, @1); }
+| "{...}" { $$.kind = muscle_code;    $$.chars = strip_braces ($1); }
 ;