]> git.eshelyaron.com Git - emacs.git/commitdiff
(do_autoload): Don't output any message.
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 24 Sep 2007 08:29:50 +0000 (08:29 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 24 Sep 2007 08:29:50 +0000 (08:29 +0000)
src/ChangeLog
src/eval.c

index 97adc89995abe6c1d76417d47da7a1b356889643..6500d152f698c8cfed85211266e4ee5d7fa8ebdf 100644 (file)
@@ -1,3 +1,7 @@
+2007-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * eval.c (do_autoload): Don't output any message.
+
 2007-09-24  Juri Linkov  <juri@jurta.org>
 
        * emacs.c (standard_args): Change priority of "--no-splash"
index 26332fa9dfb6477916cfdb29a3c7fec33c2ac005..03923d815aa108aeac3f8d62f08f1a8090e54a4c 100644 (file)
@@ -2202,7 +2202,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, Qt);
+  Fload (Fcar (Fcdr (fundef)), Qnil, Qt, Qnil, Qt);
 
   /* Save the old autoloads, in case we ever do an unload.  */
   queue = Vautoload_queue;