1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-16 09:50:25 +00:00

(struct x_output): Rename busy_window to

hourglass_window, busy_p to hourglass_p.
This commit is contained in:
Gerd Moellmann 2001-02-21 13:56:00 +00:00
parent 0af913d7b6
commit 231c4d5cf0

View File

@ -1,5 +1,5 @@
/* MS-DOS specific C utilities, interface.
Copyright (C) 1993 Free Software Foundation, Inc.
Copyright (C) 1993, 2001 Free Software Foundation, Inc.
This file is part of GNU Emacs.
@ -91,8 +91,8 @@ struct x_output
PIX_TYPE background_pixel; /* used in xfaces.c and lots of other places */
PIX_TYPE foreground_pixel; /* ditto */
XFontStruct *font; /* used in x-popup-menu (xmenu.c) */
Window busy_window; /* currently unused (but maybe some day) */
unsigned busy_p : 1; /* ditto */
Window hourglass_window; /* currently unused (but maybe some day) */
unsigned hourglass_p : 1; /* ditto */
struct display_info display_info; /* used for drawing mouse highlight */
};