mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
fix char after =end
skips() advance after the string skipped.
This commit is contained in:
+1
-1
@@ -4204,7 +4204,7 @@ parser_yylex(parser_state *p)
|
||||
yyerror(p, "embedded document meets end of file");
|
||||
return 0;
|
||||
}
|
||||
c = nextc_n(p, sizeof(end)-1);
|
||||
c = nextc(p);
|
||||
} while (!(c < 0 || isspace(c)));
|
||||
goto retry;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user