From: Gerd Moellmann Date: Tue, 29 Feb 2000 09:31:20 +0000 (+0000) Subject: (cancel_busy_cursor): Set busy_cursor_atimer to null X-Git-Tag: emacs-pretest-21.0.90~4850 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=99f01f62ed07bee829ad4807b971b761803f88d6;p=emacs.git (cancel_busy_cursor): Set busy_cursor_atimer to null after canceling it. --- 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 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 (); }