+2001-07-25 Gerd Moellmann <gerd@gnu.org>
+
+ * xdisp.c (resize_mini_window): Don't resize while redisplaying.
+
2001-07-24 Gerd Moellmann <gerd@gnu.org>
* xfns.c (valid_image_p): Protect better against invalid image
xassert (MINI_WINDOW_P (w));
+ /* Don't resize windows while redisplaying; it would confuse
+ redisplay functions when the size of the window they are
+ displaying changes from under them. */
+ if (redisplaying_p)
+ return 0;
+
/* Nil means don't try to resize. */
if (NILP (Vresize_mini_windows)
|| (FRAME_X_P (f) && f->output_data.x == NULL))