# HG changeset patch # User Gerd Moellmann # Date 980509071 0 # Node ID 7402e353c6e4f4e7e82dec1cebdf1c25802ee40a # Parent 1e31f3cb4c5978ae2b75b6b45aab3ab01be7250b (display-startup-echo-area-message): Make sure the echo area is resized to fit the size of the startup message. diff -r 1e31f3cb4c59 -r 7402e353c6e4 lisp/startup.el --- a/lisp/startup.el Fri Jan 26 11:30:01 2001 +0000 +++ b/lisp/startup.el Fri Jan 26 11:37:51 2001 +0000 @@ -1207,7 +1207,8 @@ (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)