# HG changeset patch # User Gerd Moellmann # Date 951816680 0 # Node ID 27af8b008c6907e88433a10b09b3ee4603dffa5f # Parent 70c1647c2bfc28bbba63927ff91fec6ecc43ea5e (cancel_busy_cursor): Set busy_cursor_atimer to null after canceling it. diff -r 70c1647c2bfc -r 27af8b008c69 src/xfns.c --- a/src/xfns.c Tue Feb 29 09:30:43 2000 +0000 +++ b/src/xfns.c Tue Feb 29 09:31:20 2000 +0000 @@ -10111,7 +10111,11 @@ 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 (); }