This commit is contained in:
Christoph Oelckers 2016-04-07 13:39:40 +02:00
commit 9c2c5fc850

View file

@ -1573,5 +1573,5 @@ void TK_SkipLine(void)
{
char *sourcenow = tk_SourceName;
int linenow = tk_Line;
do TK_NextToken(); while (tk_Line == linenow && tk_SourceName == sourcenow);
do TK_NextToken(); while (tk_Line == linenow && tk_SourceName == sourcenow && tk_Token != TK_EOF);
}