Mercurial > emacs
changeset 25516:866049050d67
(read_minibuf_unwind): Resize mini-window when
reaching minibuf_level 0.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Fri, 03 Sep 1999 15:52:10 +0000 |
parents | ca83cbd878a7 |
children | 619897099dc4 |
files | src/minibuf.c |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/minibuf.c Fri Sep 03 15:52:08 1999 +0000 +++ b/src/minibuf.c Fri Sep 03 15:52:10 1999 +0000 @@ -635,6 +635,11 @@ unbind_to (count, Qnil); } + /* When we get to the outmost level, make sure we resize the + mini-window back to its normal size. */ + if (minibuf_level == 0) + resize_mini_window (XWINDOW (window)); + /* Make sure minibuffer window is erased, not ignored. */ windows_or_buffers_changed++; XSETFASTINT (XWINDOW (window)->last_modified, 0);