diff options
| author | Glenn Morris | 2003-09-19 17:13:23 +0000 |
|---|---|---|
| committer | Glenn Morris | 2003-09-19 17:13:23 +0000 |
| commit | 9f8b58091cdbf898457c7184d99a67b5543dce65 (patch) | |
| tree | 50714309f5a603740217be7b04f1607f13c438b2 | |
| parent | 1fd244505e60463f4b7921f7b995d4590cfe6374 (diff) | |
| download | emacs-9f8b58091cdbf898457c7184d99a67b5543dce65.tar.gz emacs-9f8b58091cdbf898457c7184d99a67b5543dce65.zip | |
(command-line-1): Stop startup-echo-area-message being hidden by
"Loading image..." message.
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/startup.el | 2 |
2 files changed, 10 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7f719447ffc..1e0d0022fcb 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2003-09-19 Glenn Morris <gmorris@ast.cam.ac.uk> | ||
| 2 | |||
| 3 | * startup.el (command-line-1): Stop startup-echo-area-message | ||
| 4 | being hidden by "Loading image..." message. | ||
| 5 | |||
| 6 | * progmodes/sh-script.el (sh-font-lock-keywords): Highlight | ||
| 7 | escaped EOLs differently from other backslash constructs. | ||
| 8 | |||
| 1 | 2003-09-19 Richard M. Stallman <rms@gnu.org> | 9 | 2003-09-19 Richard M. Stallman <rms@gnu.org> |
| 2 | 10 | ||
| 3 | * emacs-lisp/edebug.el (edebug-var-status, edebug-restore-status): | 11 | * emacs-lisp/edebug.el (edebug-var-status, edebug-restore-status): |
diff --git a/lisp/startup.el b/lisp/startup.el index 66e94665117..8d425f84e19 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -1553,6 +1553,8 @@ normal otherwise." | |||
| 1553 | nil t)) | 1553 | nil t)) |
| 1554 | (error nil)) | 1554 | (error nil)) |
| 1555 | (kill-buffer buffer))))) | 1555 | (kill-buffer buffer))))) |
| 1556 | ;; Stop any "Loading image..." message hiding echo-area-message. | ||
| 1557 | (use-fancy-splash-screens-p) | ||
| 1556 | (display-startup-echo-area-message)) | 1558 | (display-startup-echo-area-message)) |
| 1557 | 1559 | ||
| 1558 | ;; Delay 2 seconds after an init file error message | 1560 | ;; Delay 2 seconds after an init file error message |