From 4dfa2310fc274d8666cdef74fa411ca09de1abb9 Mon Sep 17 00:00:00 2001 From: ceriel Date: Thu, 15 Jun 1989 09:16:27 +0000 Subject: [PATCH] continue when an include file is not found --- 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 17027e529..8b01e53e8 100644 --- a/util/cpp/domacro.c +++ b/util/cpp/domacro.c @@ -269,7 +269,7 @@ do_include() inctable[0] = WorkingDir; if (filenm) { if (!InsertFile(filenm, &inctable[tok==FILESPECIFIER],&result)){ - fatal("cannot find include file \"%s\"", filenm); + error("cannot find include file \"%s\"", filenm); } else { WorkingDir = getwdir(result); -- 2.34.1