]> git.eshelyaron.com Git - emacs.git/commitdiff
(read_minibuf_unwind): Resize mini-window when
authorGerd Moellmann <gerd@gnu.org>
Fri, 3 Sep 1999 15:52:10 +0000 (15:52 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 3 Sep 1999 15:52:10 +0000 (15:52 +0000)
reaching minibuf_level 0.

src/minibuf.c

index 258ef3ea72019fcadb1ffec5d78449ad1bda9681..99368824a310dd9a0269d4c48d3760f58530713c 100644 (file)
@@ -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);