Mercurial > emacs
changeset 27902:27af8b008c69
(cancel_busy_cursor): Set busy_cursor_atimer to null
after canceling it.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Tue, 29 Feb 2000 09:31:20 +0000 |
parents | 70c1647c2bfc |
children | cc3d4c12e03b |
files | src/xfns.c |
diffstat | 1 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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 (); }