diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2008-09-19 00:35:42 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2008-09-19 00:35:42 +0000 |
commit | 91a47a6836113dffd044e15cd82ce8d1c30f307d (patch) | |
tree | 15e6d6285b672417e6b59d958ea8a96ce3d83f9e /src/window.h | |
parent | f172b808d1c22222361d73cb945b90b562500a59 (diff) | |
download | emacs-91a47a6836113dffd044e15cd82ce8d1c30f307d.tar.gz |
* frame.h (struct frame): Move alpha from the middle of bitfields.
* window.h (struct window): Move frozen_window_start_p after the
rest of the bitfields to reduce padding.
Diffstat (limited to 'src/window.h')
-rw-r--r-- | src/window.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/window.h b/src/window.h index 6c148d99cea..68f63d966c7 100644 --- a/src/window.h +++ b/src/window.h @@ -280,6 +280,11 @@ struct window Currently only used for menu bar windows of frames. */ unsigned pseudo_window_p : 1; + /* 1 means the window start of this window is frozen and may not + be changed during redisplay. If point is not in the window, + accept that. */ + unsigned frozen_window_start_p : 1; + /* Amount by which lines of this window are scrolled in y-direction (smooth scrolling). */ int vscroll; @@ -287,11 +292,6 @@ struct window /* Z_BYTE - the buffer position of the last glyph in the current matrix of W. Only valid if WINDOW_END_VALID is not nil. */ int window_end_bytepos; - - /* 1 means the window start of this window is frozen and may not - be changed during redisplay. If point is not in the window, - accept that. */ - unsigned frozen_window_start_p : 1; }; /* 1 if W is a minibuffer window. */ |