comparison src/eval.c @ 36256:e033d60bd048

Use display_hourglass_p, start_hourglass, cancel_hourglass instead of the old names.
author Gerd Moellmann <gerd@gnu.org>
date Wed, 21 Feb 2001 13:58:57 +0000
parents efc51d1a7b60
children 6d423e4621ef
comparison
equal deleted inserted replaced
36255:1890bad59762 36256:e033d60bd048
239 239
240 if (specpdl_size + 40 > max_specpdl_size) 240 if (specpdl_size + 40 > max_specpdl_size)
241 max_specpdl_size = specpdl_size + 40; 241 max_specpdl_size = specpdl_size + 40;
242 242
243 #ifdef HAVE_X_WINDOWS 243 #ifdef HAVE_X_WINDOWS
244 if (display_busy_cursor_p) 244 if (display_hourglass_p)
245 cancel_busy_cursor (); 245 cancel_hourglass ();
246 #endif 246 #endif
247 247
248 debug_on_next_call = 0; 248 debug_on_next_call = 0;
249 when_entered_debugger = num_nonmacro_input_events; 249 when_entered_debugger = num_nonmacro_input_events;
250 250
1364 extern int gc_in_progress; 1364 extern int gc_in_progress;
1365 extern int waiting_for_input; 1365 extern int waiting_for_input;
1366 Lisp_Object debugger_value; 1366 Lisp_Object debugger_value;
1367 Lisp_Object string; 1367 Lisp_Object string;
1368 Lisp_Object real_error_symbol; 1368 Lisp_Object real_error_symbol;
1369 extern int display_busy_cursor_p; 1369 extern int display_hourglass_p;
1370 struct backtrace *bp; 1370 struct backtrace *bp;
1371 1371
1372 immediate_quit = handling_signal = 0; 1372 immediate_quit = handling_signal = 0;
1373 if (gc_in_progress || waiting_for_input) 1373 if (gc_in_progress || waiting_for_input)
1374 abort (); 1374 abort ();
1379 real_error_symbol = Fcar (data); 1379 real_error_symbol = Fcar (data);
1380 else 1380 else
1381 real_error_symbol = error_symbol; 1381 real_error_symbol = error_symbol;
1382 1382
1383 #ifdef HAVE_X_WINDOWS 1383 #ifdef HAVE_X_WINDOWS
1384 if (display_busy_cursor_p) 1384 if (display_hourglass_p)
1385 cancel_busy_cursor (); 1385 cancel_hourglass ();
1386 #endif 1386 #endif
1387 1387
1388 /* This hook is used by edebug. */ 1388 /* This hook is used by edebug. */
1389 if (! NILP (Vsignal_hook_function)) 1389 if (! NILP (Vsignal_hook_function))
1390 call2 (Vsignal_hook_function, error_symbol, data); 1390 call2 (Vsignal_hook_function, error_symbol, data);