1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-06 20:00:46 -08:00

* xfns.c (hourglass_started): New function.

This commit is contained in:
Jan Djärv 2005-03-10 19:08:01 +00:00
parent 3b8029d7f6
commit 83c31c8df0

View file

@ -4291,6 +4291,14 @@ static Lisp_Object Vhourglass_delay;
static void show_hourglass P_ ((struct atimer *));
static void hide_hourglass P_ ((void));
/* Return non-zero if houglass timer has been started or hourglass is shown. */
int
hourglass_started ()
{
return hourglass_shown_p || hourglass_atimer != NULL;
}
/* Cancel a currently active hourglass timer, and start a new one. */