aboutsummaryrefslogtreecommitdiffstats
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
parentbf1a876009df0bf25ec232ccea3db298cea0aa35 (diff)
downloademacs-4fbcc9b1eb28834edf159ea5fd91e255a9aded3c.tar.gz
emacs-4fbcc9b1eb28834edf159ea5fd91e255a9aded3c.zip
(command_loop_1) [HAVE_X_WINDOWS]: Call cancel_hourglass unconditionally.
-rw-r--r--src/ChangeLog8
-rw-r--r--src/keyboard.c6
2 files changed, 12 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 8b482e66fd5..d9a5a749d63 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,11 @@
12002-02-02 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2
3 * keyboard.c (command_loop_1) [HAVE_X_WINDOWS]: Call
4 cancel_hourglass unconditionally.
5
6 * eval.c (Fsignal): Remove duplicated declaration of
7 the variable `display_hourglass_p'.
8
12002-01-31 Richard M. Stallman <rms@gnu.org> 92002-01-31 Richard M. Stallman <rms@gnu.org>
2 10
3 * editfns.c (region_limit): Nicer error message. 11 * editfns.c (region_limit): Nicer error message.
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: ;