diff options
| author | Gerd Moellmann | 2001-02-21 13:56:00 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-02-21 13:56:00 +0000 |
| commit | 231c4d5cf00bce572bc50f3034c3ceaa01dbd88d (patch) | |
| tree | 0f4968354b6439d1fc7d08a8186f5bc2b565c711 /src | |
| parent | 0af913d7b6948157d69db11d5f9c80dc5d92ee3f (diff) | |
| download | emacs-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.h | 6 |
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 | ||
| 4 | This file is part of GNU Emacs. | 4 | This 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 | ||