diff options
author | Eli Zaretskii <eliz@gnu.org> | 2016-03-25 10:45:39 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2016-03-25 10:45:39 +0300 |
commit | 326c64fcc37cdb31183ec62d5535ec0a52c4738e (patch) | |
tree | baa97b7ac79e07463c18f74be2a55ccddfc402e2 /src | |
parent | 7ab2a9743faca2ddde04ea2e6127badac9ce1bb1 (diff) | |
download | emacs-326c64fcc37cdb31183ec62d5535ec0a52c4738e.tar.gz |
Fix splash screen display at startup
* src/frame.c (DEFAULT_ROWS): Enlarge to 36, so that the initial
window displayed by "emacs -q" has enough space to show the whole
text even if it includes 2 lines talking about recovering crashes
sessions. (Bug#23074)
* lisp/startup.el (use-fancy-splash-screens-p): Fix off-by-one
error when computing the window-height from frame-height.
* etc/NEWS: Mention the change.
Diffstat (limited to 'src')
-rw-r--r-- | src/frame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c index 7511d5323ca..53ff05965c1 100644 --- a/src/frame.c +++ b/src/frame.c @@ -4565,7 +4565,7 @@ On Nextstep, this just calls `ns-parse-geometry'. */) This function does not make the coordinates positive. */ -#define DEFAULT_ROWS 35 +#define DEFAULT_ROWS 36 #define DEFAULT_COLS 80 long |