Mercurial > emacs
diff 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 |
line wrap: on
line diff
--- a/src/eval.c Wed Feb 21 13:57:40 2001 +0000 +++ b/src/eval.c Wed Feb 21 13:58:57 2001 +0000 @@ -241,8 +241,8 @@ max_specpdl_size = specpdl_size + 40; #ifdef HAVE_X_WINDOWS - if (display_busy_cursor_p) - cancel_busy_cursor (); + if (display_hourglass_p) + cancel_hourglass (); #endif debug_on_next_call = 0; @@ -1366,7 +1366,7 @@ Lisp_Object debugger_value; Lisp_Object string; Lisp_Object real_error_symbol; - extern int display_busy_cursor_p; + extern int display_hourglass_p; struct backtrace *bp; immediate_quit = handling_signal = 0; @@ -1381,8 +1381,8 @@ real_error_symbol = error_symbol; #ifdef HAVE_X_WINDOWS - if (display_busy_cursor_p) - cancel_busy_cursor (); + if (display_hourglass_p) + cancel_hourglass (); #endif /* This hook is used by edebug. */
