Mercurial > emacs
diff src/window.h @ 25740:68659a16bc42
(struct window): New member height_fixed_p.
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Thu, 16 Sep 1999 12:52:25 +0000 |
| parents | 54a8aba6712b |
| children | 2bbee3534773 |
line wrap: on
line diff
--- a/src/window.h Thu Sep 16 12:52:22 1999 +0000 +++ b/src/window.h Thu Sep 16 12:52:25 1999 +0000 @@ -260,6 +260,11 @@ be changed during redisplay. If point is not in the window, accept that. */ unsigned frozen_window_start_p : 1; + + /* 1 means that this window's height is temporarily fixed. Used + in resize_mini_window to precent resizing selected_window, if + possible. */ + unsigned height_fixed_p : 1; }; /* 1 if W is a minibuffer window. */
