]> git.eshelyaron.com Git - emacs.git/commitdiff
(adjust_frame_glyphs): Reset Vresize_mini_config.
authorGerd Moellmann <gerd@gnu.org>
Tue, 24 Aug 1999 19:24:46 +0000 (19:24 +0000)
committerGerd Moellmann <gerd@gnu.org>
Tue, 24 Aug 1999 19:24:46 +0000 (19:24 +0000)
src/dispnew.c

index 57e3b2253a9993cb702eb20161d9ae704391b5e1..1f8f34dcc4e44367c8aed51017cd1776c22ff7ed 100644 (file)
@@ -1941,6 +1941,14 @@ adjust_frame_glyphs (f)
   adjust_decode_mode_spec_buffer (f);
 
   f->glyphs_initialized_p = 1;
+
+  /* If mini-window is resized, make it not restore its saved window
+     configuration.  This function being called indicates that the
+     current window configuration is being changed.  These changes
+     would be undone if resize_mini_window would restore its saved
+     configuration.  */
+  if (f == resize_mini_frame)
+    Vresize_mini_config = Qnil;
 }