Refactor yylex func

This commit is contained in:
Jun Hiroe
2014-10-27 01:27:00 +09:00
parent 0e3b3bbc08
commit 34175bf41f
+1 -5
View File
@@ -5312,12 +5312,8 @@ parser_yylex(parser_state *p)
static int
yylex(void *lval, parser_state *p)
{
int t;
p->ylval = lval;
t = parser_yylex(p);
return t;
return parser_yylex(p);
}
static void