aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann1999-08-24 19:24:46 +0000
committerGerd Moellmann1999-08-24 19:24:46 +0000
commit4fdb1988fe3cbf7af4404bf6529f1f4df45ebb89 (patch)
tree70264116f67e4fe6cbdbcf62439717542f96860b /src
parent2452e0ae97c8d126c6a115b71805ec65b313925f (diff)
downloademacs-4fdb1988fe3cbf7af4404bf6529f1f4df45ebb89.tar.gz
emacs-4fdb1988fe3cbf7af4404bf6529f1f4df45ebb89.zip
(adjust_frame_glyphs): Reset Vresize_mini_config.
Diffstat (limited to 'src')
-rw-r--r--src/dispnew.c8
1 files changed, 8 insertions, 0 deletions
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)
1941 adjust_decode_mode_spec_buffer (f); 1941 adjust_decode_mode_spec_buffer (f);
1942 1942
1943 f->glyphs_initialized_p = 1; 1943 f->glyphs_initialized_p = 1;
1944
1945 /* If mini-window is resized, make it not restore its saved window
1946 configuration. This function being called indicates that the
1947 current window configuration is being changed. These changes
1948 would be undone if resize_mini_window would restore its saved
1949 configuration. */
1950 if (f == resize_mini_frame)
1951 Vresize_mini_config = Qnil;
1944} 1952}
1945 1953
1946 1954