From 7075e5a56ae6a07a4eea4f8ca8e2d25abdab1fba Mon Sep 17 00:00:00 2001 From: Erik Naggum Date: Thu, 27 Feb 1997 19:08:35 +0000 Subject: [PATCH] (Fload): Call Vload_source_file_function with 4 args. --- src/lread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lread.c b/src/lread.c index 4e2ed5ccd2a..882b09bf5a3 100644 --- a/src/lread.c +++ b/src/lread.c @@ -483,7 +483,7 @@ Return t if file exists.") if (!NILP (Vload_source_file_function)) { close (fd); - return call3 (Vload_source_file_function, found, file, + return call4 (Vload_source_file_function, found, file, NILP (noerror) ? Qnil : Qt, NILP (nomessage) ? Qnil : Qt); } -- 2.39.5