From 99f01f62ed07bee829ad4807b971b761803f88d6 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Tue, 29 Feb 2000 09:31:20 +0000 Subject: [PATCH] (cancel_busy_cursor): Set busy_cursor_atimer to null after canceling it. --- src/xfns.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 (); } -- 2.39.5