diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-02-21 13:56:29 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-02-21 13:56:29 +0000 |
commit | 5fa360661b35726aac8a3d18cef0d8f9baeab5c9 (patch) | |
tree | 2c64b4da3180dfaf8d73dcbe2d506f3de78bda67 /src/w32term.h | |
parent | 231c4d5cf00bce572bc50f3034c3ceaa01dbd88d (diff) | |
download | emacs-5fa360661b35726aac8a3d18cef0d8f9baeab5c9.tar.gz |
(struct x_output): Rename busy_cursor to
hourglass_cursor, busy_window to hourglass_window, busy_p to
hourglass_p.
Diffstat (limited to 'src/w32term.h')
-rw-r--r-- | src/w32term.h | 14 |
1 files changed, 7 insertions, 7 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 @@ /* Definitions and headers for communication on the Microsoft W32 API. - Copyright (C) 1995 Free Software Foundation, Inc. + Copyright (C) 1995, 2001 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -350,15 +350,15 @@ struct w32_output Cursor nontext_cursor; Cursor modeline_cursor; Cursor cross_cursor; - Cursor busy_cursor; + Cursor hourglass_cursor; Cursor horizontal_drag_cursor; - /* Window whose cursor is busy_cursor. This window is temporarily - mapped to display a busy-cursor. */ - Window busy_window; + /* Window whose cursor is hourglass_cursor. This window is + temporarily mapped to display an hourglass cursor. */ + Window hourglass_window; - /* Non-zero means busy cursor is currently displayed. */ - unsigned busy_p : 1; + /* Non-zero means hourglass cursor is currently displayed. */ + unsigned hourglass_p : 1; /* Flag to set when the window needs to be completely repainted. */ int needs_exposure; |