aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-02-29 09:31:20 +0000
committerGerd Moellmann2000-02-29 09:31:20 +0000
commit99f01f62ed07bee829ad4807b971b761803f88d6 (patch)
tree6bd7b706900c44a37f28cf5e4a3404ce1b619ac5 /src
parent0d6ba42e4997e0a440f9eb64b269e81e31f48d38 (diff)
downloademacs-99f01f62ed07bee829ad4807b971b761803f88d6.tar.gz
emacs-99f01f62ed07bee829ad4807b971b761803f88d6.zip
(cancel_busy_cursor): Set busy_cursor_atimer to null
after canceling it.
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}