]> code.delx.au - gnu-emacs/commitdiff
(cancel_busy_cursor): Set busy_cursor_atimer to null
authorGerd Moellmann <gerd@gnu.org>
Tue, 29 Feb 2000 09:31:20 +0000 (09:31 +0000)
committerGerd Moellmann <gerd@gnu.org>
Tue, 29 Feb 2000 09:31:20 +0000 (09:31 +0000)
after canceling it.

src/xfns.c

index 7fd8119a5f3c29da17ffed89f9d6b4b47862a2a8..e412cc568c644f1d1b4449d37d6ceed1a049e707 100644 (file)
@@ -10111,7 +10111,11 @@ void
 cancel_busy_cursor ()
 {
   if (busy_cursor_atimer)
-    cancel_atimer (busy_cursor_atimer);
+    {
+      cancel_atimer (busy_cursor_atimer);
+      busy_cursor_atimer = NULL;
+    }
+  
   if (busy_cursor_shown_p)
     hide_busy_cursor ();
 }