Mercurial > emacs
changeset 25385:82213781d29e
(adjust_frame_glyphs): Reset Vresize_mini_config.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Tue, 24 Aug 1999 19:24:46 +0000 |
parents | fdefa56606aa |
children | f431cf81b4a3 |
files | src/dispnew.c |
diffstat | 1 files changed, 8 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/dispnew.c Tue Aug 24 19:24:28 1999 +0000 +++ b/src/dispnew.c Tue Aug 24 19:24:46 1999 +0000 @@ -1941,6 +1941,14 @@ 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; }