diff options
| author | Daniel Colascione | 2012-10-08 11:22:42 -0800 |
|---|---|---|
| committer | Daniel Colascione | 2012-10-08 11:22:42 -0800 |
| commit | f99714cef2fd9ea5adbe5ea202cacd01478b3710 (patch) | |
| tree | 9d8b857343d8f4e537a40b8a85627083a458c007 | |
| parent | 61af95a53cbf68b9a0673f0b031101f41adc63b2 (diff) | |
| download | emacs-f99714cef2fd9ea5adbe5ea202cacd01478b3710.tar.gz emacs-f99714cef2fd9ea5adbe5ea202cacd01478b3710.zip | |
* xdisp.c (start_hourglass): Call w32_note_current_window when
HAVE_NTGUI but not WINDOWSNT, resolving a problem that caused Emacs to
display the hourglass cursor forever.
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/xdisp.c | 5 |
2 files changed, 9 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 4531cee8dba..c2c6a72d43f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2012-10-08 Daniel Colascione <dancol@dancol.org> | ||
| 2 | |||
| 3 | * xdisp.c (start_hourglass): Call w32_note_current_window when | ||
| 4 | HAVE_NTGUI but not WINDOWSNT, resolving a problem that caused | ||
| 5 | Emacs to display the hourglass cursor forever. | ||
| 6 | |||
| 1 | 2012-10-08 Jan Djärv <jan.h.d@swipnet.se> | 7 | 2012-10-08 Jan Djärv <jan.h.d@swipnet.se> |
| 2 | * nsfont.m (Vfonts_in_cache): New variable. | 8 | * nsfont.m (Vfonts_in_cache): New variable. |
| 3 | (nsfont_open): Use unsignedLongLongValue for cache in case wide ints | 9 | (nsfont_open): Use unsignedLongLongValue for cache in case wide ints |
diff --git a/src/xdisp.c b/src/xdisp.c index 2047c0e78c1..1e61a74068b 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -29379,9 +29379,10 @@ start_hourglass (void) | |||
| 29379 | else | 29379 | else |
| 29380 | delay = make_emacs_time (DEFAULT_HOURGLASS_DELAY, 0); | 29380 | delay = make_emacs_time (DEFAULT_HOURGLASS_DELAY, 0); |
| 29381 | 29381 | ||
| 29382 | #ifdef WINDOWSNT | 29382 | #ifdef HAVE_NTGUI |
| 29383 | extern void w32_note_current_window (void); | ||
| 29383 | w32_note_current_window (); | 29384 | w32_note_current_window (); |
| 29384 | #endif | 29385 | #endif /* HAVE_NTGUI */ |
| 29385 | 29386 | ||
| 29386 | hourglass_atimer = start_atimer (ATIMER_RELATIVE, delay, | 29387 | hourglass_atimer = start_atimer (ATIMER_RELATIVE, delay, |
| 29387 | show_hourglass, NULL); | 29388 | show_hourglass, NULL); |