]> git.eshelyaron.com Git - emacs.git/commitdiff
(display-startup-echo-area-message): Make sure
authorGerd Moellmann <gerd@gnu.org>
Fri, 26 Jan 2001 11:38:23 +0000 (11:38 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 26 Jan 2001 11:38:23 +0000 (11:38 +0000)
the echo area is resized to fit the size of the startup
message.

lisp/ChangeLog
lisp/startup.el

index f1bbcf4f59a78531be0de4d376efdae441997073..b216d07992074afee78f063a3960d301b305bf18 100644 (file)
@@ -1,5 +1,9 @@
 2001-01-26  Gerd Moellmann  <gerd@gnu.org>
 
+       * startup.el (display-startup-echo-area-message): Make sure
+       the echo area is resized to fit the size of the startup
+       message.
+
        * gud.el (gud-perldb-massage-args): Avoid nreverse'ing a list
        part of which is a constant.
 
index d11b9945b0f4e6fa226f7851ce9222f218dd87e3..65ceb28d22bb7267e68f9d02d4ab26dd42706860 100644 (file)
@@ -1207,7 +1207,8 @@ where FACE is a valid face specification, as it can be used with
 
 
 (defun display-startup-echo-area-message ()
-  (message (startup-echo-area-message)))
+  (let ((resize-mini-windows t))
+    (message (startup-echo-area-message))))
 
 
 (defun command-line-1 (command-line-args-left)