aboutsummaryrefslogtreecommitdiffstats
path: root/src/keyboard.c
diff options
context:
space:
mode:
authorPavel Janík2002-02-02 10:11:45 +0000
committerPavel Janík2002-02-02 10:11:45 +0000
commit4fbcc9b1eb28834edf159ea5fd91e255a9aded3c (patch)
tree10992362a1d4c54e365a85a74cd7ecb81633db21 /src/keyboard.c
parentbf1a876009df0bf25ec232ccea3db298cea0aa35 (diff)
downloademacs-4fbcc9b1eb28834edf159ea5fd91e255a9aded3c.tar.gz
emacs-4fbcc9b1eb28834edf159ea5fd91e255a9aded3c.zip
(command_loop_1) [HAVE_X_WINDOWS]: Call cancel_hourglass unconditionally.
Diffstat (limited to 'src/keyboard.c')
-rw-r--r--src/keyboard.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 39a4cf93f28..109503afa52 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -1641,8 +1641,10 @@ command_loop_1 ()
1641 Fcommand_execute (Vthis_command, Qnil, Qnil, Qnil); 1641 Fcommand_execute (Vthis_command, Qnil, Qnil, Qnil);
1642 1642
1643#ifdef HAVE_X_WINDOWS 1643#ifdef HAVE_X_WINDOWS
1644 if (display_hourglass_p) 1644 /* Do not check display_hourglass_p here, because
1645 cancel_hourglass (); 1645 Fcommand_execute could change it, but we should cancel
1646 hourglass cursor anyway. */
1647 cancel_hourglass ();
1646#endif 1648#endif
1647 } 1649 }
1648 directly_done: ; 1650 directly_done: ;