From: Richard M. Stallman Date: Sat, 9 Aug 1997 03:06:55 +0000 (+0000) Subject: (do_autoload): Require a suffix for the file. X-Git-Tag: emacs-20.1~710 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4aac23023438a7554cf40b109e2cc475feefc73f;p=emacs.git (do_autoload): Require a suffix for the file. --- 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;