From: Gerd Moellmann Date: Tue, 24 Aug 1999 19:24:46 +0000 (+0000) Subject: (adjust_frame_glyphs): Reset Vresize_mini_config. X-Git-Tag: emacs-pretest-21.0.90~7056 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4fdb1988fe3cbf7af4404bf6529f1f4df45ebb89;p=emacs.git (adjust_frame_glyphs): Reset Vresize_mini_config. --- diff --git a/src/dispnew.c b/src/dispnew.c index 57e3b2253a9..1f8f34dcc4e 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -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; }