1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-02 10:11:05 -08:00

* 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.
This commit is contained in:
Daniel Colascione 2012-10-08 11:22:42 -08:00
parent 61af95a53c
commit f99714cef2
2 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2012-10-08 Daniel Colascione <dancol@dancol.org>
* 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.
2012-10-08 Jan Djärv <jan.h.d@swipnet.se>
* nsfont.m (Vfonts_in_cache): New variable.
(nsfont_open): Use unsignedLongLongValue for cache in case wide ints

View file

@ -29379,9 +29379,10 @@ start_hourglass (void)
else
delay = make_emacs_time (DEFAULT_HOURGLASS_DELAY, 0);
#ifdef WINDOWSNT
#ifdef HAVE_NTGUI
extern void w32_note_current_window (void);
w32_note_current_window ();
#endif
#endif /* HAVE_NTGUI */
hourglass_atimer = start_atimer (ATIMER_RELATIVE, delay,
show_hourglass, NULL);