aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/startup.el2
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 @@
12003-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
12003-09-19 Richard M. Stallman <rms@gnu.org> 92003-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