diff options
| author | Gerd Moellmann | 2001-02-21 13:56:29 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-02-21 13:56:29 +0000 |
| commit | 5fa360661b35726aac8a3d18cef0d8f9baeab5c9 (patch) | |
| tree | 2c64b4da3180dfaf8d73dcbe2d506f3de78bda67 /src | |
| parent | 231c4d5cf00bce572bc50f3034c3ceaa01dbd88d (diff) | |
| download | emacs-5fa360661b35726aac8a3d18cef0d8f9baeab5c9.tar.gz emacs-5fa360661b35726aac8a3d18cef0d8f9baeab5c9.zip | |
(struct x_output): Rename busy_cursor to
hourglass_cursor, busy_window to hourglass_window, busy_p to
hourglass_p.
Diffstat (limited to 'src')
| -rw-r--r-- | src/w32term.h | 14 | ||||
| -rw-r--r-- | src/xterm.h | 12 |
2 files changed, 13 insertions, 13 deletions
diff --git a/src/w32term.h b/src/w32term.h index e87ea67da9d..fe69afe9de1 100644 --- a/src/w32term.h +++ b/src/w32term.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Definitions and headers for communication on the Microsoft W32 API. | 1 | /* Definitions and headers for communication on the Microsoft W32 API. |
| 2 | Copyright (C) 1995 Free Software Foundation, Inc. | 2 | Copyright (C) 1995, 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 | ||
| @@ -350,15 +350,15 @@ struct w32_output | |||
| 350 | Cursor nontext_cursor; | 350 | Cursor nontext_cursor; |
| 351 | Cursor modeline_cursor; | 351 | Cursor modeline_cursor; |
| 352 | Cursor cross_cursor; | 352 | Cursor cross_cursor; |
| 353 | Cursor busy_cursor; | 353 | Cursor hourglass_cursor; |
| 354 | Cursor horizontal_drag_cursor; | 354 | Cursor horizontal_drag_cursor; |
| 355 | 355 | ||
| 356 | /* Window whose cursor is busy_cursor. This window is temporarily | 356 | /* Window whose cursor is hourglass_cursor. This window is |
| 357 | mapped to display a busy-cursor. */ | 357 | temporarily mapped to display an hourglass cursor. */ |
| 358 | Window busy_window; | 358 | Window hourglass_window; |
| 359 | 359 | ||
| 360 | /* Non-zero means busy cursor is currently displayed. */ | 360 | /* Non-zero means hourglass cursor is currently displayed. */ |
| 361 | unsigned busy_p : 1; | 361 | unsigned hourglass_p : 1; |
| 362 | 362 | ||
| 363 | /* Flag to set when the window needs to be completely repainted. */ | 363 | /* Flag to set when the window needs to be completely repainted. */ |
| 364 | int needs_exposure; | 364 | int needs_exposure; |
diff --git a/src/xterm.h b/src/xterm.h index a1f0e38c570..6cdd8cfe182 100644 --- a/src/xterm.h +++ b/src/xterm.h | |||
| @@ -487,15 +487,15 @@ struct x_output | |||
| 487 | Cursor nontext_cursor; | 487 | Cursor nontext_cursor; |
| 488 | Cursor modeline_cursor; | 488 | Cursor modeline_cursor; |
| 489 | Cursor cross_cursor; | 489 | Cursor cross_cursor; |
| 490 | Cursor busy_cursor; | 490 | Cursor hourglass_cursor; |
| 491 | Cursor horizontal_drag_cursor; | 491 | Cursor horizontal_drag_cursor; |
| 492 | 492 | ||
| 493 | /* Window whose cursor is busy_cursor. This window is temporarily | 493 | /* Window whose cursor is hourglass_cursor. This window is temporarily |
| 494 | mapped to display a busy-cursor. */ | 494 | mapped to display an hourglass cursor. */ |
| 495 | Window busy_window; | 495 | Window hourglass_window; |
| 496 | 496 | ||
| 497 | /* Non-zero means busy cursor is currently displayed. */ | 497 | /* Non-zero means hourglass cursor is currently displayed. */ |
| 498 | unsigned busy_p : 1; | 498 | unsigned hourglass_p : 1; |
| 499 | 499 | ||
| 500 | /* Flag to set when the X window needs to be completely repainted. */ | 500 | /* Flag to set when the X window needs to be completely repainted. */ |
| 501 | int needs_exposure; | 501 | int needs_exposure; |