comparison src/window.h @ 90228:fa0da9b57058

Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-82 Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 542-553) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 116-121) - Merge from emacs--cvs-trunk--0 - Update from CVS
author Miles Bader <miles@gnu.org>
date Mon, 19 Sep 2005 10:20:33 +0000
parents 2d92f5c9d6ae a0e2a112bfa7
children 7beb78bc1f8e
comparison
equal deleted inserted replaced
90227:10fe5fadaf89 90228:fa0da9b57058
288 288
289 /* 1 means the window start of this window is frozen and may not 289 /* 1 means the window start of this window is frozen and may not
290 be changed during redisplay. If point is not in the window, 290 be changed during redisplay. If point is not in the window,
291 accept that. */ 291 accept that. */
292 unsigned frozen_window_start_p : 1; 292 unsigned frozen_window_start_p : 1;
293
294 /* 1 means that this window's height is temporarily fixed. Used
295 in resize_mini_window to precent resizing selected_window, if
296 possible. */
297 unsigned height_fixed_p : 1;
298 }; 293 };
299 294
300 /* 1 if W is a minibuffer window. */ 295 /* 1 if W is a minibuffer window. */
301 296
302 #define MINI_WINDOW_P(W) (!NILP ((W)->mini_p)) 297 #define MINI_WINDOW_P(W) (!NILP ((W)->mini_p))