1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-30 11:09:23 +00:00

(grow_mini_window): Fix typo in comment.

This commit is contained in:
Pavel Janík 2001-11-01 14:24:02 +00:00
parent 086b25d387
commit 8b8bd9c6ed
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-11-01 Pavel Jan,Bm(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.

View 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);
}