diff options
| author | Gerd Moellmann | 2001-02-21 13:58:57 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-02-21 13:58:57 +0000 |
| commit | df6c90d8de07af4d38ad1ac2e4b71cddd5717972 (patch) | |
| tree | b175086a625a4aff17b503cd67d242d51262320a /src/eval.c | |
| parent | 526a058f123a37ff67adad48fe9b3bd072b7aa69 (diff) | |
| download | emacs-df6c90d8de07af4d38ad1ac2e4b71cddd5717972.tar.gz emacs-df6c90d8de07af4d38ad1ac2e4b71cddd5717972.zip | |
Use display_hourglass_p, start_hourglass, cancel_hourglass instead of
the old names.
Diffstat (limited to 'src/eval.c')
| -rw-r--r-- | src/eval.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/eval.c b/src/eval.c index 08df4e9ccfd..7571f802c2e 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -241,8 +241,8 @@ call_debugger (arg) | |||
| 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; |
| @@ -1366,7 +1366,7 @@ See also the function `condition-case'.") | |||
| 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; |
| @@ -1381,8 +1381,8 @@ See also the function `condition-case'.") | |||
| 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. */ |