diff options
| author | Eli Zaretskii | 2016-03-25 10:45:39 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2016-03-25 10:45:39 +0300 |
| commit | 326c64fcc37cdb31183ec62d5535ec0a52c4738e (patch) | |
| tree | baa97b7ac79e07463c18f74be2a55ccddfc402e2 /src | |
| parent | 7ab2a9743faca2ddde04ea2e6127badac9ce1bb1 (diff) | |
| download | emacs-326c64fcc37cdb31183ec62d5535ec0a52c4738e.tar.gz emacs-326c64fcc37cdb31183ec62d5535ec0a52c4738e.zip | |
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'. */) | |||
| 4565 | 4565 | ||
| 4566 | This function does not make the coordinates positive. */ | 4566 | This function does not make the coordinates positive. */ |
| 4567 | 4567 | ||
| 4568 | #define DEFAULT_ROWS 35 | 4568 | #define DEFAULT_ROWS 36 |
| 4569 | #define DEFAULT_COLS 80 | 4569 | #define DEFAULT_COLS 80 |
| 4570 | 4570 | ||
| 4571 | long | 4571 | long |