diff options
| author | Pavel Janík <Pavel@Janik.cz> | 2001-11-01 14:24:02 +0000 |
|---|---|---|
| committer | Pavel Janík <Pavel@Janik.cz> | 2001-11-01 14:24:02 +0000 |
| commit | 8b8bd9c6eda85dd4c496dc0e4f70af28b13dbcbb (patch) | |
| tree | 3f9c476ea9797eb01a0fc3039789fbe860b330f7 | |
| parent | 086b25d38730971b63621f79a15c9846e80b20b1 (diff) | |
| download | emacs-8b8bd9c6eda85dd4c496dc0e4f70af28b13dbcbb.tar.gz | |
(grow_mini_window): Fix typo in comment.
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/window.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index d0523eb522e..fa3356ca12a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -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. diff --git a/src/window.c b/src/window.c index 5f122976d9b..4ac39dde882 100644 --- a/src/window.c +++ b/src/window.c @@ -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); } |
