bug fix for #line directives
This commit is contained in:
parent
ed2516a57a
commit
99e74b2341
1 changed files with 1 additions and 1 deletions
|
@ -752,7 +752,7 @@ do_line(l)
|
||||||
struct token tk;
|
struct token tk;
|
||||||
int t = GetToken(&tk);
|
int t = GetToken(&tk);
|
||||||
|
|
||||||
SkipToNewLine();
|
if (t != EOF) SkipToNewLine();
|
||||||
LineNumber = l; /* the number of the next input line */
|
LineNumber = l; /* the number of the next input line */
|
||||||
if (t == STRING) /* is there a filespecifier? */
|
if (t == STRING) /* is there a filespecifier? */
|
||||||
FileName = tk.tk_str;
|
FileName = tk.tk_str;
|
||||||
|
|
Loading…
Reference in a new issue