aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.h
diff options
context:
space:
mode:
authorGerd Moellmann1999-09-16 12:52:25 +0000
committerGerd Moellmann1999-09-16 12:52:25 +0000
commita71eca925b1818ee1509675e49a1c3192004b112 (patch)
tree6187ba3b5d1e88e079caf0df197c917a7c74822a /src/window.h
parenta34dfd12cc0deef726e946412756c4991b4cd71e (diff)
downloademacs-a71eca925b1818ee1509675e49a1c3192004b112.tar.gz
emacs-a71eca925b1818ee1509675e49a1c3192004b112.zip
(struct window): New member height_fixed_p.
Diffstat (limited to 'src/window.h')
-rw-r--r--src/window.h5
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
260 be changed during redisplay. If point is not in the window, 260 be changed during redisplay. If point is not in the window,
261 accept that. */ 261 accept that. */
262 unsigned frozen_window_start_p : 1; 262 unsigned frozen_window_start_p : 1;
263
264 /* 1 means that this window's height is temporarily fixed. Used
265 in resize_mini_window to precent resizing selected_window, if
266 possible. */
267 unsigned height_fixed_p : 1;
263}; 268};
264 269
265/* 1 if W is a minibuffer window. */ 270/* 1 if W is a minibuffer window. */