]> git.eshelyaron.com Git - emacs.git/commitdiff
(do_autoload): Require a suffix for the file.
authorRichard M. Stallman <rms@gnu.org>
Sat, 9 Aug 1997 03:06:55 +0000 (03:06 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 9 Aug 1997 03:06:55 +0000 (03:06 +0000)
src/eval.c

index 1f2d639419fea19b74f0ee1dd7230b353f4b5842..36fab7226b7afd0ddec8e545afae3e93b2a6e3bb 100644 (file)
@@ -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;