Mercurial > emacs
changeset 26474:027b7c42a65b
(Fx_show_busy_cursor): Doc-fix.
(Fx_hide_busy_cursor): Ditto.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Wed, 17 Nov 1999 21:03:12 +0000 |
parents | 762c51f4a100 |
children | 7bd41cca7ed8 |
files | src/xfns.c |
diffstat | 1 files changed, 6 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xfns.c Wed Nov 17 20:58:06 1999 +0000 +++ b/src/xfns.c Wed Nov 17 21:03:12 1999 +0000 @@ -9404,7 +9404,7 @@ Sx_show_busy_cursor, 0, 0, 0, "Show a busy cursor, if not already shown.\n\ Each call to this function must be matched by a call to\n\ -x-undisplay-busy-cursor to make the busy pointer disappear again.") +`x-hide-busy-cursor' to make the busy pointer disappear again.") () { ++busy_count; @@ -9426,11 +9426,13 @@ XSetWindowAttributes attrs; attrs.cursor = f->output_data.x->busy_cursor; + f->output_data.x->busy_window = XCreateWindow (FRAME_X_DISPLAY (f), FRAME_OUTER_WINDOW (f), 0, 0, 32000, 32000, 0, 0, - InputOnly, CopyFromParent, + InputOnly, + CopyFromParent, mask, &attrs); } @@ -9447,8 +9449,8 @@ Sx_hide_busy_cursor, 0, 1, 0, "Hide a busy-cursor.\n\ A busy-cursor will actually be undisplayed when a matching\n\ -`x-undisplay-busy-cursor' is called for each `x-display-busy-cursor'\n\ -issued. FORCE non-nil means undisplay the busy-cursor forcibly,\n\ +`x-hide-busy-cursor' is called for each `x-show-busy-cursor'\n\ +issued. FORCE non-nil means hide the busy-cursor forcibly,\n\ not counting calls.") (force) Lisp_Object force;