aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2001-02-21 13:56:00 +0000
committerGerd Moellmann2001-02-21 13:56:00 +0000
commit231c4d5cf00bce572bc50f3034c3ceaa01dbd88d (patch)
tree0f4968354b6439d1fc7d08a8186f5bc2b565c711 /src
parent0af913d7b6948157d69db11d5f9c80dc5d92ee3f (diff)
downloademacs-231c4d5cf00bce572bc50f3034c3ceaa01dbd88d.tar.gz
emacs-231c4d5cf00bce572bc50f3034c3ceaa01dbd88d.zip
(struct x_output): Rename busy_window to
hourglass_window, busy_p to hourglass_p.
Diffstat (limited to 'src')
-rw-r--r--src/msdos.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/msdos.h b/src/msdos.h
index a60bb3edc5f..dfb4a4c943a 100644
--- a/src/msdos.h
+++ b/src/msdos.h
@@ -1,5 +1,5 @@
1/* MS-DOS specific C utilities, interface. 1/* MS-DOS specific C utilities, interface.
2 Copyright (C) 1993 Free Software Foundation, Inc. 2 Copyright (C) 1993, 2001 Free Software Foundation, Inc.
3 3
4This file is part of GNU Emacs. 4This file is part of GNU Emacs.
5 5
@@ -91,8 +91,8 @@ struct x_output
91 PIX_TYPE background_pixel; /* used in xfaces.c and lots of other places */ 91 PIX_TYPE background_pixel; /* used in xfaces.c and lots of other places */
92 PIX_TYPE foreground_pixel; /* ditto */ 92 PIX_TYPE foreground_pixel; /* ditto */
93 XFontStruct *font; /* used in x-popup-menu (xmenu.c) */ 93 XFontStruct *font; /* used in x-popup-menu (xmenu.c) */
94 Window busy_window; /* currently unused (but maybe some day) */ 94 Window hourglass_window; /* currently unused (but maybe some day) */
95 unsigned busy_p : 1; /* ditto */ 95 unsigned hourglass_p : 1; /* ditto */
96 struct display_info display_info; /* used for drawing mouse highlight */ 96 struct display_info display_info; /* used for drawing mouse highlight */
97}; 97};
98 98