Mercurial > emacs
comparison src/window.c @ 40619:4e8c66bd2abb
(grow_mini_window): Fix typo in comment.
| author | Pavel Jan?k <Pavel@Janik.cz> |
|---|---|
| date | Thu, 01 Nov 2001 14:23:38 +0000 |
| parents | 9461cfa8d18d |
| children | cdfd4d09b79a |
comparison
equal
deleted
inserted
replaced
| 40618:04c9ddfb2b2a | 40619:4e8c66bd2abb |
|---|---|
| 3749 root = XWINDOW (FRAME_ROOT_WINDOW (f)); | 3749 root = XWINDOW (FRAME_ROOT_WINDOW (f)); |
| 3750 if (delta) | 3750 if (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 } |
| 3758 | 3758 |
| 3759 if (delta) | 3759 if (delta) |
