remove unused local variable beg in parser_yylex

This commit is contained in:
Yukihiro Matz Matsumoto
2013-03-18 22:59:13 +09:00
committed by Masaki Muranaka
parent 801bc9e39e
commit 6611c18c5b
+2 -2
View File
@@ -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;