Commit 34175bf4 authored by Jun Hiroe's avatar Jun Hiroe

Refactor yylex func

parent 0e3b3bbc
......@@ -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
......
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