]> git.eshelyaron.com Git - emacs.git/commitdiff
(struct x_output): Rename busy_cursor to
authorGerd Moellmann <gerd@gnu.org>
Wed, 21 Feb 2001 13:56:29 +0000 (13:56 +0000)
committerGerd Moellmann <gerd@gnu.org>
Wed, 21 Feb 2001 13:56:29 +0000 (13:56 +0000)
hourglass_cursor, busy_window to hourglass_window, busy_p to
hourglass_p.

src/w32term.h
src/xterm.h

index e87ea67da9d3104549a212f8be46ecdf03b36c44..fe69afe9de131e4adb08d462711d6f1d5a05d33c 100644 (file)
@@ -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;
index a1f0e38c57086ac5b893773b21fee9fe8df9a054..6cdd8cfe18291015b1d0b59bc1f32cc7d5b04b69 100644 (file)
@@ -487,15 +487,15 @@ struct x_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 X window needs to be completely repainted.  */
   int needs_exposure;