aboutsummaryrefslogtreecommitdiffstats
path: root/src/lread.c
diff options
context:
space:
mode:
authorErik Naggum1997-02-27 19:08:35 +0000
committerErik Naggum1997-02-27 19:08:35 +0000
commit7075e5a56ae6a07a4eea4f8ca8e2d25abdab1fba (patch)
tree021779d9b25ce1405dd73ac51ab5118836ca10c5 /src/lread.c
parenta1a17b614d5b629993e4c7d6591045e9f6b0d64e (diff)
downloademacs-7075e5a56ae6a07a4eea4f8ca8e2d25abdab1fba.tar.gz
emacs-7075e5a56ae6a07a4eea4f8ca8e2d25abdab1fba.zip
(Fload): Call Vload_source_file_function with 4 args.
Diffstat (limited to 'src/lread.c')
-rw-r--r--src/lread.c2
1 files changed, 1 insertions, 1 deletions
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.")
483 if (!NILP (Vload_source_file_function)) 483 if (!NILP (Vload_source_file_function))
484 { 484 {
485 close (fd); 485 close (fd);
486 return call3 (Vload_source_file_function, found, file, 486 return call4 (Vload_source_file_function, found, file,
487 NILP (noerror) ? Qnil : Qt, 487 NILP (noerror) ? Qnil : Qt,
488 NILP (nomessage) ? Qnil : Qt); 488 NILP (nomessage) ? Qnil : Qt);
489 } 489 }