(resize_mini_window): Do nothing if frame is an X
frame that hasn't been initialized yet.
This commit is contained in:
parent
674f8b7c18
commit
00f6d59e8c
1 changed files with 2 additions and 1 deletions
|
|
@ -5490,7 +5490,8 @@ resize_mini_window (w, exact_p)
|
|||
xassert (MINI_WINDOW_P (w));
|
||||
|
||||
/* Nil means don't try to resize. */
|
||||
if (NILP (Vmax_mini_window_height))
|
||||
if (NILP (Vmax_mini_window_height)
|
||||
|| (FRAME_X_P (f) && f->output_data.x == NULL))
|
||||
return 0;
|
||||
|
||||
if (!FRAME_MINIBUF_ONLY_P (f))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue