From 4aac23023438a7554cf40b109e2cc475feefc73f Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 9 Aug 1997 03:06:55 +0000 Subject: [PATCH] (do_autoload): Require a suffix for the file. --- src/eval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2