From: Gerd Moellmann Date: Fri, 25 Feb 2000 13:30:07 +0000 (+0000) Subject: (wait_reading_process_input): Remove busy-cursor code. X-Git-Tag: emacs-pretest-21.0.90~4888 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e12da451f5c1d449d4c33dcc9353a20ee228fe7f;p=emacs.git (wait_reading_process_input): Remove busy-cursor code. --- diff --git a/src/process.c b/src/process.c index aa83422f8c1..1b2693bded4 100644 --- a/src/process.c +++ b/src/process.c @@ -2381,11 +2381,6 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display) { 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. */ @@ -2809,12 +2804,6 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display) 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; }