]> git.eshelyaron.com Git - emacs.git/commitdiff
(set_window_height): Allow all heights > 0 for minibuffer windows.
authorRichard M. Stallman <rms@gnu.org>
Mon, 21 Jul 1997 20:00:36 +0000 (20:00 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 21 Jul 1997 20:00:36 +0000 (20:00 +0000)
(change_window_height): Fix one-off comparing DELTA with MAXIMUM.

src/window.c

index 87807ac1de399bd20dddfae884a731d6b9d504ba..95559b6fbc7a742663d9b483e2b638a766ca34d1 100644 (file)
@@ -1735,7 +1735,9 @@ set_window_height (window, height, nodelete)
 
   if (!nodelete
       && ! NILP (w->parent)
-      && height < window_min_height)
+      && (MINI_WINDOW_P (w)
+         ? height < 1
+         : height < window_min_height))
     {
       delete_window (window);
       return;
@@ -2608,7 +2610,7 @@ change_window_height (delta, widthflag)
     maximum += (*sizefun) (prev) - MINSIZE (prev);
 
   /* If we can get it all from them, do so.  */
-  if (delta < maximum)
+  if (delta <= maximum)
     {
       Lisp_Object first_unaffected;
       Lisp_Object first_affected;