Mercurial > hg > xemacs-beta
comparison src/window.h @ 16:0293115a14e9 r19-15b91
Import from CVS: tag r19-15b91
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:49:20 +0200 |
parents | 376386a54a3c |
children | 131b0175ea99 |
comparison
equal
deleted
inserted
replaced
15:ad457d5f7d04 | 16:0293115a14e9 |
---|---|
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); |