comparison src/process.c @ 27861:ef7c1ba652b2

(wait_reading_process_input): Remove busy-cursor code.
author Gerd Moellmann <gerd@gnu.org>
date Fri, 25 Feb 2000 13:30:07 +0000
parents 2c53eb482802
children 9c8bcd7e4a4f
comparison
equal deleted inserted replaced
27860:5cf4fd1963fc 27861:ef7c1ba652b2
2379 2379
2380 while (1) 2380 while (1)
2381 { 2381 {
2382 int timeout_reduced_for_timers = 0; 2382 int timeout_reduced_for_timers = 0;
2383 2383
2384 #ifdef HAVE_X_WINDOWS
2385 if (display_busy_cursor_p)
2386 Fx_hide_busy_cursor (Qnil);
2387 #endif
2388
2389 /* If calling from keyboard input, do not quit 2384 /* If calling from keyboard input, do not quit
2390 since we want to return C-g as an input character. 2385 since we want to return C-g as an input character.
2391 Otherwise, do pending quit if requested. */ 2386 Otherwise, do pending quit if requested. */
2392 if (XINT (read_kbd) >= 0) 2387 if (XINT (read_kbd) >= 0)
2393 QUIT; 2388 QUIT;
2807 in an X window 2802 in an X window
2808 Turn periodic alarms back on */ 2803 Turn periodic alarms back on */
2809 start_polling (); 2804 start_polling ();
2810 #endif 2805 #endif
2811 2806
2812 #ifdef HAVE_X_WINDOWS
2813 if (display_busy_cursor_p)
2814 if (!inhibit_busy_cursor)
2815 Fx_show_busy_cursor ();
2816 #endif
2817
2818 return got_some_input; 2807 return got_some_input;
2819 } 2808 }
2820 2809
2821 /* Given a list (FUNCTION ARGS...), apply FUNCTION to the ARGS. */ 2810 /* Given a list (FUNCTION ARGS...), apply FUNCTION to the ARGS. */
2822 2811