diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index ce992d42531..edefe3210c0 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -31598,7 +31598,12 @@ A value of t means resize them to fit the text displayed in them. | |||
| 31598 | A value of `grow-only', the default, means let mini-windows grow only; | 31598 | A value of `grow-only', the default, means let mini-windows grow only; |
| 31599 | they return to their normal size when the minibuffer is closed, or the | 31599 | they return to their normal size when the minibuffer is closed, or the |
| 31600 | echo area becomes empty. */); | 31600 | echo area becomes empty. */); |
| 31601 | Vresize_mini_windows = Qgrow_only; | 31601 | /* Contrary to the doc string, we initialize this to nil, so that |
| 31602 | loading loadup.el won't try to resize windows before loading | ||
| 31603 | window.el, where some functions we need to call for this live. | ||
| 31604 | We assign the 'grow-only' value right after loading window.el | ||
| 31605 | during loadup. */ | ||
| 31606 | Vresize_mini_windows = Qnil; | ||
| 31602 | 31607 | ||
| 31603 | DEFVAR_LISP ("blink-cursor-alist", Vblink_cursor_alist, | 31608 | DEFVAR_LISP ("blink-cursor-alist", Vblink_cursor_alist, |
| 31604 | doc: /* Alist specifying how to blink the cursor off. | 31609 | doc: /* Alist specifying how to blink the cursor off. |