diff options
| author | Pavel Janík | 2002-02-02 10:11:45 +0000 |
|---|---|---|
| committer | Pavel Janík | 2002-02-02 10:11:45 +0000 |
| commit | 4fbcc9b1eb28834edf159ea5fd91e255a9aded3c (patch) | |
| tree | 10992362a1d4c54e365a85a74cd7ecb81633db21 | |
| parent | bf1a876009df0bf25ec232ccea3db298cea0aa35 (diff) | |
| download | emacs-4fbcc9b1eb28834edf159ea5fd91e255a9aded3c.tar.gz emacs-4fbcc9b1eb28834edf159ea5fd91e255a9aded3c.zip | |
(command_loop_1) [HAVE_X_WINDOWS]: Call cancel_hourglass unconditionally.
| -rw-r--r-- | src/ChangeLog | 8 | ||||
| -rw-r--r-- | src/keyboard.c | 6 |
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 @@ | |||
| 1 | 2002-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 | |||
| 1 | 2002-01-31 Richard M. Stallman <rms@gnu.org> | 9 | 2002-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: ; |