summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPavel Janík <Pavel@Janik.cz>2001-11-01 14:23:38 +0000
committerPavel Janík <Pavel@Janik.cz>2001-11-01 14:23:38 +0000
commit3789cd66c77d980e9fe9ccd87c64d02ffb777223 (patch)
tree0c3ad397d8268cf4ef39cbf3fb2ae674bb8a9a5d /src
parentde919c17a871424cf74e04bdc6eb9736ea2e554b (diff)
downloademacs-3789cd66c77d980e9fe9ccd87c64d02ffb777223.tar.gz
(grow_mini_window): Fix typo in comment.
Diffstat (limited to 'src')
-rw-r--r--src/window.c2
1 files changed, 1 insertions, 1 deletions
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);
}