Mercurial > hg > xemacs-beta
comparison src/window.h @ 74:54cc21c15cbb r20-0b32
Import from CVS: tag r20-0b32
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:04:33 +0200 |
parents | 131b0175ea99 |
children | fe104dbd9147 |
comparison
equal
deleted
inserted
replaced
73:e2d7a37b7c8d | 74:54cc21c15cbb |
---|---|
272 struct scrollbar_instance *scrollbar_vertical_instance; | 272 struct scrollbar_instance *scrollbar_vertical_instance; |
273 struct scrollbar_instance *scrollbar_horizontal_instance; | 273 struct scrollbar_instance *scrollbar_horizontal_instance; |
274 #endif | 274 #endif |
275 | 275 |
276 /* Flag indicating whether a subwindow is currently being displayed. */ | 276 /* Flag indicating whether a subwindow is currently being displayed. */ |
277 int subwindows_being_displayed :1; | 277 unsigned int subwindows_being_displayed :1; |
278 | 278 |
279 /* Keep track of the truncation status in this window so we can | 279 /* Keep track of the truncation status in this window so we can |
280 detect when it has changed. #### Magic variables would be a huge | 280 detect when it has changed. #### Magic variables would be a huge |
281 win here. */ | 281 win here. */ |
282 int truncate_win :1; | 282 unsigned int truncate_win :1; |
283 }; | 283 }; |
284 | 284 |
285 #ifdef emacs /* some things other than emacs want the structs */ | 285 #ifdef emacs /* some things other than emacs want the structs */ |
286 | 286 |
287 DECLARE_LRECORD (window, struct window); | 287 DECLARE_LRECORD (window, struct window); |