aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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