diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-09-24 08:29:50 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-09-24 08:29:50 +0000 |
commit | 7351b242ea42c6cdfde0c023c54b3e527fd357d5 (patch) | |
tree | 32da310df5435d3c4f8f2cded318719361d8f7b8 /src/eval.c | |
parent | 5205011bedd00f541c5c0aec314c46ba0bcd52ea (diff) | |
download | emacs-7351b242ea42c6cdfde0c023c54b3e527fd357d5.tar.gz |
(do_autoload): Don't output any message.
Diffstat (limited to 'src/eval.c')
-rw-r--r-- | src/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c index 26332fa9dfb..03923d815aa 100644 --- a/src/eval.c +++ b/src/eval.c @@ -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; |