]> git.eshelyaron.com Git - emacs.git/commitdiff
(grow_mini_window): Fix typo in comment.
authorPavel Janík <Pavel@Janik.cz>
Thu, 1 Nov 2001 14:24:02 +0000 (14:24 +0000)
committerPavel Janík <Pavel@Janik.cz>
Thu, 1 Nov 2001 14:24:02 +0000 (14:24 +0000)
src/ChangeLog
src/window.c

index d0523eb522e00f756fc21cb9d01884976e4ea646..fa3356ca12a4a89076e5f3b9b537144ab44de5fa 100644 (file)
@@ -1,3 +1,7 @@
+2001-11-01  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
+
+       * window.c (grow_mini_window): Fix typo in comment.
+
 2001-11-01  Gerd Moellmann  <gerd@gnu.org>
 
        * xterm.c (x_scroll_bar_create): Check for width and height > 0.
index 5f122976d9bf82296265e8c336b0227933f6d5f8..4ac39dde882594a7c6a732964f2328a0fe141a6a 100644 (file)
@@ -3751,7 +3751,7 @@ grow_mini_window (w, delta)
     {
       int min_height = window_min_size (root, 0, 0, 0);
       if (XFASTINT (root->height) - delta < min_height)
-       /* Note that the roor window may already be smaller than
+       /* Note that the root window may already be smaller than
           min_height.  */
        delta = max (0, XFASTINT (root->height) - min_height);
     }