remove unused local variable beg in parser_yylex

parent 138a3569
......@@ -4573,7 +4573,7 @@ parser_yylex(parser_state *p)
case '%':
if (IS_BEG()) {
int beg = 0, term;
int term;
int paren;
c = nextc(p);
......@@ -4583,7 +4583,7 @@ parser_yylex(parser_state *p)
c = 'Q';
}
else {
beg = term = nextc(p);
term = nextc(p);
if (isalnum(term)) {
yyerror(p, "unknown type of %string");
return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment