aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2001-02-21 13:58:57 +0000
committerGerd Moellmann2001-02-21 13:58:57 +0000
commitdf6c90d8de07af4d38ad1ac2e4b71cddd5717972 (patch)
treeb175086a625a4aff17b503cd67d242d51262320a /src
parent526a058f123a37ff67adad48fe9b3bd072b7aa69 (diff)
downloademacs-df6c90d8de07af4d38ad1ac2e4b71cddd5717972.tar.gz
emacs-df6c90d8de07af4d38ad1ac2e4b71cddd5717972.zip
Use display_hourglass_p, start_hourglass, cancel_hourglass instead of
the old names.
Diffstat (limited to 'src')
-rw-r--r--src/eval.c10
-rw-r--r--src/fns.c6
-rw-r--r--src/lread.c10
3 files changed, 13 insertions, 13 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. */
diff --git a/src/fns.c b/src/fns.c
index e31d065c017..29498de417e 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -1,5 +1,5 @@
1/* Random utility Lisp functions. 1/* Random utility Lisp functions.
2 Copyright (C) 1985, 86, 87, 93, 94, 95, 97, 98, 99, 2000 2 Copyright (C) 1985, 86, 87, 93, 94, 95, 97, 98, 99, 2000, 2001
3 Free Software Foundation, Inc. 3 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
@@ -2811,8 +2811,8 @@ is nil and `use-dialog-box' is non-nil.")
2811 GCPRO2 (prompt, xprompt); 2811 GCPRO2 (prompt, xprompt);
2812 2812
2813#ifdef HAVE_X_WINDOWS 2813#ifdef HAVE_X_WINDOWS
2814 if (display_busy_cursor_p) 2814 if (display_hourglass_p)
2815 cancel_busy_cursor (); 2815 cancel_hourglass ();
2816#endif 2816#endif
2817 2817
2818 while (1) 2818 while (1)
diff --git a/src/lread.c b/src/lread.c
index 64d3d4dc337..b862bbf217b 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -1,5 +1,5 @@
1/* Lisp parsing and input streams. 1/* Lisp parsing and input streams.
2 Copyright (C) 1985, 86, 87, 88, 89, 93, 94, 95, 97, 98, 99, 2000 2 Copyright (C) 1985, 86, 87, 88, 89, 93, 94, 95, 97, 98, 99, 2000, 2001
3 Free Software Foundation, Inc. 3 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
@@ -427,8 +427,8 @@ read_filtered_event (no_switch_frame, ascii_required, error_nonascii,
427 register Lisp_Object val, delayed_switch_frame; 427 register Lisp_Object val, delayed_switch_frame;
428 428
429#ifdef HAVE_WINDOW_SYSTEM 429#ifdef HAVE_WINDOW_SYSTEM
430 if (display_busy_cursor_p) 430 if (display_hourglass_p)
431 cancel_busy_cursor (); 431 cancel_hourglass ();
432#endif 432#endif
433 433
434 delayed_switch_frame = Qnil; 434 delayed_switch_frame = Qnil;
@@ -489,8 +489,8 @@ read_filtered_event (no_switch_frame, ascii_required, error_nonascii,
489 unread_switch_frame = delayed_switch_frame; 489 unread_switch_frame = delayed_switch_frame;
490 490
491#ifdef HAVE_WINDOW_SYSTEM 491#ifdef HAVE_WINDOW_SYSTEM
492 if (display_busy_cursor_p) 492 if (display_hourglass_p)
493 start_busy_cursor (); 493 start_hourglass ();
494#endif 494#endif
495 return val; 495 return val;
496} 496}