aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xfns.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/xfns.c b/src/xfns.c
index 7fd8119a5f3..e412cc568c6 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -10111,7 +10111,11 @@ void
10111cancel_busy_cursor () 10111cancel_busy_cursor ()
10112{ 10112{
10113 if (busy_cursor_atimer) 10113 if (busy_cursor_atimer)
10114 cancel_atimer (busy_cursor_atimer); 10114 {
10115 cancel_atimer (busy_cursor_atimer);
10116 busy_cursor_atimer = NULL;
10117 }
10118
10115 if (busy_cursor_shown_p) 10119 if (busy_cursor_shown_p)
10116 hide_busy_cursor (); 10120 hide_busy_cursor ();
10117} 10121}