comparison src/window.h @ 70:131b0175ea99 r20-0b30

Import from CVS: tag r20-0b30
author cvs
date Mon, 13 Aug 2007 09:02:59 +0200
parents 0293115a14e9
children 54cc21c15cbb
comparison
equal deleted inserted replaced
69:804d1389bcd6 70:131b0175ea99
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 unsigned int subwindows_being_displayed :1; 277 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 unsigned int truncate_win :1; 282 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);