Replaced an occurrence of EOI by EOF.
This commit is contained in:
parent
324cbd8327
commit
8af94099a3
1 changed files with 1 additions and 1 deletions
|
@ -120,7 +120,7 @@ domacro()
|
||||||
case INTEGER: /* # <integer> [<filespecifier>]? */
|
case INTEGER: /* # <integer> [<filespecifier>]? */
|
||||||
do_line((unsigned int)tk.tk_val);
|
do_line((unsigned int)tk.tk_val);
|
||||||
break;
|
break;
|
||||||
case EOI: /* only `#' on this line: do nothing, ignore */
|
case EOF: /* only `#' on this line: do nothing, ignore */
|
||||||
break;
|
break;
|
||||||
default: /* invalid token following '#' */
|
default: /* invalid token following '#' */
|
||||||
error("illegal # line");
|
error("illegal # line");
|
||||||
|
|
Loading…
Reference in a new issue