diff options
| author | Glenn Morris | 2005-04-07 11:09:34 +0000 |
|---|---|---|
| committer | Glenn Morris | 2005-04-07 11:09:34 +0000 |
| commit | 11dd83c89907e16f0a58b3b373fa1afdd58dda6d (patch) | |
| tree | 481f6dd950bf0c2587ec0bf528c4a94602d42e02 | |
| parent | 4c23089d9973de056e9922e76162a8cefc9efe5c (diff) | |
| download | emacs-11dd83c89907e16f0a58b3b373fa1afdd58dda6d.tar.gz emacs-11dd83c89907e16f0a58b3b373fa1afdd58dda6d.zip | |
Comment previous change more fully.
| -rw-r--r-- | lisp/startup.el | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lisp/startup.el b/lisp/startup.el index 5ef0dba00b3..e10f34c6c7e 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -1481,8 +1481,14 @@ normal otherwise." | |||
| 1481 | nil t)) | 1481 | nil t)) |
| 1482 | (error nil)) | 1482 | (error nil)) |
| 1483 | (kill-buffer buffer))))) | 1483 | (kill-buffer buffer))))) |
| 1484 | ;; display-splash-screen at the end of command-line-1 calls | ||
| 1485 | ;; use-fancy-splash-screens-p. This can cause image.el to be | ||
| 1486 | ;; loaded, putting "Loading image... done" in the echo area. | ||
| 1487 | ;; This hides startup-echo-area-message. So | ||
| 1488 | ;; use-fancy-splash-screens-p is called here simply to get the | ||
| 1489 | ;; loading of image.el (if needed) out of the way before | ||
| 1490 | ;; display-startup-echo-area-message runs. | ||
| 1484 | (progn | 1491 | (progn |
| 1485 | ;; Stop any "Loading image..." message hiding echo-area-message. | ||
| 1486 | (use-fancy-splash-screens-p) | 1492 | (use-fancy-splash-screens-p) |
| 1487 | (display-startup-echo-area-message))) | 1493 | (display-startup-echo-area-message))) |
| 1488 | 1494 | ||