From 8af94099a3a905cc077c20ecadc57845f80d8909 Mon Sep 17 00:00:00 2001 From: ceriel Date: Wed, 14 Jan 1987 21:37:22 +0000 Subject: [PATCH] Replaced an occurrence of EOI by EOF. --- util/cpp/domacro.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); -- 2.34.1