diff options
| author | Gerd Moellmann | 1999-11-17 21:03:12 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-11-17 21:03:12 +0000 |
| commit | dc6f74cf0ee7e6f3a90442335dbfea1d8072f149 (patch) | |
| tree | d7849b4a698d47cca487b99262c3c6e64de8e0cb /src | |
| parent | b6f8e8063f114cb2083245dbaa243d225841fd60 (diff) | |
| download | emacs-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.c | 10 |
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\ |
| 9406 | Each call to this function must be matched by a call to\n\ | 9406 | Each call to this function must be matched by a call to\n\ |
| 9407 | x-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\ |
| 9449 | A busy-cursor will actually be undisplayed when a matching\n\ | 9451 | A 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\ |
| 9451 | issued. FORCE non-nil means undisplay the busy-cursor forcibly,\n\ | 9453 | issued. FORCE non-nil means hide the busy-cursor forcibly,\n\ |
| 9452 | not counting calls.") | 9454 | not counting calls.") |
| 9453 | (force) | 9455 | (force) |
| 9454 | Lisp_Object force; | 9456 | Lisp_Object force; |