Mercurial > hg > xemacs-beta
diff src/console-x.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 | cca96a509cfe |
line wrap: on
line diff
--- a/src/console-x.h Mon Aug 13 09:03:47 2007 +0200 +++ b/src/console-x.h Mon Aug 13 09:04:33 2007 +0200 @@ -271,7 +271,7 @@ int desired_psheet_count; Lisp_Object current_psheet_buffer; Lisp_Object desired_psheet_buffer; -#endif +#endif /* ENERGIZE */ /*************************** Miscellaneous **************************/ @@ -304,7 +304,7 @@ /* 1 if the frame is completely visible on the display, 0 otherwise. if 0 the frame may have been iconified or may be totally or partially hidden by another X window */ - int totally_visible_p :1; + unsigned int totally_visible_p :1; /* NB: Both of the following flags are derivable from the 'shell' field above, but it's easier if we also have them separately here. */ @@ -312,13 +312,13 @@ /* Are we a top-level frame? This means that our shell is a TopLevelShell, and we should do certain things to interact with the window manager. */ - int top_level_frame_p :1; + unsigned int top_level_frame_p :1; #ifdef EXTERNAL_WIDGET /* Are we using somebody else's window for our shell window? This means that our shell is an ExternalShell. If this flag is set, then `top_level_frame_p' will never be set. */ - int external_window_p :1; + unsigned int external_window_p :1; #endif /* EXTERNAL_WIDGET */ };