aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-03-29 11:04:42 +0000
committerGerd Moellmann2000-03-29 11:04:42 +0000
commit237c23b00b16b9ae763f132a04b9bdda03a8723d (patch)
treef4038a4e8f1e36a12f570922f43ab4b1637f797c /src
parent3e04fafd11fa6fd6db24a618818ac632b9744352 (diff)
downloademacs-237c23b00b16b9ae763f132a04b9bdda03a8723d.tar.gz
emacs-237c23b00b16b9ae763f132a04b9bdda03a8723d.zip
(call_debugger): Cancel busy-cursor.
Diffstat (limited to 'src')
-rw-r--r--src/eval.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/eval.c b/src/eval.c
index 0e39af5ba35..0efa96f07a7 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -213,6 +213,11 @@ call_debugger (arg)
213 if (specpdl_size + 40 > max_specpdl_size) 213 if (specpdl_size + 40 > max_specpdl_size)
214 max_specpdl_size = specpdl_size + 40; 214 max_specpdl_size = specpdl_size + 40;
215 215
216#ifdef HAVE_X_WINDOWS
217 if (display_busy_cursor_p)
218 cancel_busy_cursor ();
219#endif
220
216 debug_on_next_call = 0; 221 debug_on_next_call = 0;
217 when_entered_debugger = num_nonmacro_input_events; 222 when_entered_debugger = num_nonmacro_input_events;
218 223