# HG changeset patch # User Gerd Moellmann # Date 938635156 0 # Node ID 148a6733cd8316d441ca6e2048e51f59353e5692 # Parent f77459b629f4ccd46d57abe1702d3e1c103c2de6 (resize_mini_window): Do nothing if frame is an X frame that hasn't been initialized yet. diff -r f77459b629f4 -r 148a6733cd83 src/xdisp.c --- a/src/xdisp.c Wed Sep 29 19:34:40 1999 +0000 +++ b/src/xdisp.c Wed Sep 29 19:59:16 1999 +0000 @@ -5490,7 +5490,8 @@ 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))