diff options
| author | Stefan Monnier | 2007-09-24 08:29:50 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2007-09-24 08:29:50 +0000 |
| commit | 7351b242ea42c6cdfde0c023c54b3e527fd357d5 (patch) | |
| tree | 32da310df5435d3c4f8f2cded318719361d8f7b8 /src | |
| parent | 5205011bedd00f541c5c0aec314c46ba0bcd52ea (diff) | |
| download | emacs-7351b242ea42c6cdfde0c023c54b3e527fd357d5.tar.gz emacs-7351b242ea42c6cdfde0c023c54b3e527fd357d5.zip | |
(do_autoload): Don't output any message.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/eval.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 97adc89995a..6500d152f69 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-09-24 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * eval.c (do_autoload): Don't output any message. | ||
| 4 | |||
| 1 | 2007-09-24 Juri Linkov <juri@jurta.org> | 5 | 2007-09-24 Juri Linkov <juri@jurta.org> |
| 2 | 6 | ||
| 3 | * emacs.c (standard_args): Change priority of "--no-splash" | 7 | * emacs.c (standard_args): Change priority of "--no-splash" |
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) | |||
| 2202 | /* Value saved here is to be restored into Vautoload_queue. */ | 2202 | /* Value saved here is to be restored into Vautoload_queue. */ |
| 2203 | record_unwind_protect (un_autoload, Vautoload_queue); | 2203 | record_unwind_protect (un_autoload, Vautoload_queue); |
| 2204 | Vautoload_queue = Qt; | 2204 | Vautoload_queue = Qt; |
| 2205 | Fload (Fcar (Fcdr (fundef)), Qnil, noninteractive ? Qt : Qnil, Qnil, Qt); | 2205 | Fload (Fcar (Fcdr (fundef)), Qnil, Qt, Qnil, Qt); |
| 2206 | 2206 | ||
| 2207 | /* Save the old autoloads, in case we ever do an unload. */ | 2207 | /* Save the old autoloads, in case we ever do an unload. */ |
| 2208 | queue = Vautoload_queue; | 2208 | queue = Vautoload_queue; |