From: Gerd Moellmann Date: Fri, 3 Sep 1999 15:52:10 +0000 (+0000) Subject: (read_minibuf_unwind): Resize mini-window when X-Git-Tag: emacs-pretest-21.0.90~6926 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=544e358dcaac7e64b0f82cf5f7324f73e45a355f;p=emacs.git (read_minibuf_unwind): Resize mini-window when reaching minibuf_level 0. --- diff --git a/src/minibuf.c b/src/minibuf.c index 258ef3ea720..99368824a31 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -635,6 +635,11 @@ read_minibuf_unwind (data) 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);