From: ceriel Date: Wed, 14 Jan 1987 21:37:22 +0000 (+0000) Subject: Replaced an occurrence of EOI by EOF. X-Git-Tag: release-5-5~4997 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=8af94099a3a905cc077c20ecadc57845f80d8909;p=ack.git Replaced an occurrence of EOI by EOF. --- diff --git a/util/cpp/domacro.c b/util/cpp/domacro.c index 2b908448b..d00abef11 100644 --- a/util/cpp/domacro.c +++ b/util/cpp/domacro.c @@ -120,7 +120,7 @@ domacro() case INTEGER: /* # []? */ do_line((unsigned int)tk.tk_val); break; - case EOI: /* only `#' on this line: do nothing, ignore */ + case EOF: /* only `#' on this line: do nothing, ignore */ break; default: /* invalid token following '#' */ error("illegal # line");