diff options
author | Gerd Moellmann <gerd@gnu.org> | 1999-09-16 12:52:25 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 1999-09-16 12:52:25 +0000 |
commit | a71eca925b1818ee1509675e49a1c3192004b112 (patch) | |
tree | 6187ba3b5d1e88e079caf0df197c917a7c74822a /src/window.h | |
parent | a34dfd12cc0deef726e946412756c4991b4cd71e (diff) | |
download | emacs-a71eca925b1818ee1509675e49a1c3192004b112.tar.gz |
(struct window): New member height_fixed_p.
Diffstat (limited to 'src/window.h')
-rw-r--r-- | src/window.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/window.h b/src/window.h index 9fabb59ed43..a30d68529c4 100644 --- a/src/window.h +++ b/src/window.h @@ -260,6 +260,11 @@ struct window 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. */ |