diff options
| author | Pavel Janík | 2001-11-01 14:24:02 +0000 |
|---|---|---|
| committer | Pavel Janík | 2001-11-01 14:24:02 +0000 |
| commit | 8b8bd9c6eda85dd4c496dc0e4f70af28b13dbcbb (patch) | |
| tree | 3f9c476ea9797eb01a0fc3039789fbe860b330f7 /src/window.c | |
| parent | 086b25d38730971b63621f79a15c9846e80b20b1 (diff) | |
| download | emacs-8b8bd9c6eda85dd4c496dc0e4f70af28b13dbcbb.tar.gz emacs-8b8bd9c6eda85dd4c496dc0e4f70af28b13dbcbb.zip | |
(grow_mini_window): Fix typo in comment.
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 2 |
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) | |||
| 3751 | { | 3751 | { |
| 3752 | int min_height = window_min_size (root, 0, 0, 0); | 3752 | int min_height = window_min_size (root, 0, 0, 0); |
| 3753 | if (XFASTINT (root->height) - delta < min_height) | 3753 | if (XFASTINT (root->height) - delta < min_height) |
| 3754 | /* Note that the roor window may already be smaller than | 3754 | /* Note that the root window may already be smaller than |
| 3755 | min_height. */ | 3755 | min_height. */ |
| 3756 | delta = max (0, XFASTINT (root->height) - min_height); | 3756 | delta = max (0, XFASTINT (root->height) - min_height); |
| 3757 | } | 3757 | } |