Mercurial > emacs
changeset 25009:5733af0b62ce
(wait_reading_process_input): Show and hide busy
cursor.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Wed, 21 Jul 1999 21:43:52 +0000 |
parents | 39dd5c98a114 |
children | 16ced12bd3aa |
files | src/process.c |
diffstat | 1 files changed, 11 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/process.c Wed Jul 21 21:43:52 1999 +0000 +++ b/src/process.c Wed Jul 21 21:43:52 1999 +0000 @@ -2314,6 +2314,11 @@ { int timeout_reduced_for_timers = 0; +#ifdef HAVE_X_WINDOWS + if (display_busy_cursor_p) + Fx_hide_busy_cursor (Qnil); +#endif + /* If calling from keyboard input, do not quit since we want to return C-g as an input character. Otherwise, do pending quit if requested. */ @@ -2725,6 +2730,12 @@ Turn periodic alarms back on */ start_polling (); #endif + +#ifdef HAVE_X_WINDOWS + if (display_busy_cursor_p) + if (!inhibit_busy_cursor) + Fx_show_busy_cursor (); +#endif return got_some_input; }