aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann1999-11-17 21:03:12 +0000
committerGerd Moellmann1999-11-17 21:03:12 +0000
commitdc6f74cf0ee7e6f3a90442335dbfea1d8072f149 (patch)
treed7849b4a698d47cca487b99262c3c6e64de8e0cb /src
parentb6f8e8063f114cb2083245dbaa243d225841fd60 (diff)
downloademacs-dc6f74cf0ee7e6f3a90442335dbfea1d8072f149.tar.gz
emacs-dc6f74cf0ee7e6f3a90442335dbfea1d8072f149.zip
(Fx_show_busy_cursor): Doc-fix.
(Fx_hide_busy_cursor): Ditto.
Diffstat (limited to 'src')
-rw-r--r--src/xfns.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/xfns.c b/src/xfns.c
index 28748091279..ffa8e6e495f 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -9404,7 +9404,7 @@ DEFUN ("x-show-busy-cursor", Fx_show_busy_cursor,
9404 Sx_show_busy_cursor, 0, 0, 0, 9404 Sx_show_busy_cursor, 0, 0, 0,
9405 "Show a busy cursor, if not already shown.\n\ 9405 "Show a busy cursor, if not already shown.\n\
9406Each call to this function must be matched by a call to\n\ 9406Each call to this function must be matched by a call to\n\
9407x-undisplay-busy-cursor to make the busy pointer disappear again.") 9407`x-hide-busy-cursor' to make the busy pointer disappear again.")
9408 () 9408 ()
9409{ 9409{
9410 ++busy_count; 9410 ++busy_count;
@@ -9426,11 +9426,13 @@ x-undisplay-busy-cursor to make the busy pointer disappear again.")
9426 XSetWindowAttributes attrs; 9426 XSetWindowAttributes attrs;
9427 9427
9428 attrs.cursor = f->output_data.x->busy_cursor; 9428 attrs.cursor = f->output_data.x->busy_cursor;
9429
9429 f->output_data.x->busy_window 9430 f->output_data.x->busy_window
9430 = XCreateWindow (FRAME_X_DISPLAY (f), 9431 = XCreateWindow (FRAME_X_DISPLAY (f),
9431 FRAME_OUTER_WINDOW (f), 9432 FRAME_OUTER_WINDOW (f),
9432 0, 0, 32000, 32000, 0, 0, 9433 0, 0, 32000, 32000, 0, 0,
9433 InputOnly, CopyFromParent, 9434 InputOnly,
9435 CopyFromParent,
9434 mask, &attrs); 9436 mask, &attrs);
9435 } 9437 }
9436 9438
@@ -9447,8 +9449,8 @@ DEFUN ("x-hide-busy-cursor", Fx_hide_busy_cursor,
9447 Sx_hide_busy_cursor, 0, 1, 0, 9449 Sx_hide_busy_cursor, 0, 1, 0,
9448 "Hide a busy-cursor.\n\ 9450 "Hide a busy-cursor.\n\
9449A busy-cursor will actually be undisplayed when a matching\n\ 9451A busy-cursor will actually be undisplayed when a matching\n\
9450`x-undisplay-busy-cursor' is called for each `x-display-busy-cursor'\n\ 9452`x-hide-busy-cursor' is called for each `x-show-busy-cursor'\n\
9451issued. FORCE non-nil means undisplay the busy-cursor forcibly,\n\ 9453issued. FORCE non-nil means hide the busy-cursor forcibly,\n\
9452not counting calls.") 9454not counting calls.")
9453 (force) 9455 (force)
9454 Lisp_Object force; 9456 Lisp_Object force;