summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-08-09 03:06:55 +0000
committerRichard M. Stallman <rms@gnu.org>1997-08-09 03:06:55 +0000
commit38d199b2c68641cb38f461a130681f1d91828525 (patch)
treee51152de87b7e01624a31b9975744495883de315 /src
parent16446423378b9e4cdf6008c537be3407a8908809 (diff)
downloademacs-38d199b2c68641cb38f461a130681f1d91828525.tar.gz
(do_autoload): Require a suffix for the file.
Diffstat (limited to 'src')
-rw-r--r--src/eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c
index 1f2d639419f..36fab7226b7 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -1632,7 +1632,7 @@ do_autoload (fundef, funname)
/* Value saved here is to be restored into Vautoload_queue */
record_unwind_protect (un_autoload, Vautoload_queue);
Vautoload_queue = Qt;
- Fload (Fcar (Fcdr (fundef)), Qnil, noninteractive ? Qt : Qnil, Qnil, Qnil);
+ Fload (Fcar (Fcdr (fundef)), Qnil, noninteractive ? Qt : Qnil, Qnil, Qt);
/* Save the old autoloads, in case we ever do an unload. */
queue = Vautoload_queue;