From: Jason Rumney Date: Thu, 27 Mar 2008 17:11:40 +0000 (+0000) Subject: (start_hourglass): Suppress hourglass on tty frames. X-Git-Tag: emacs-pretest-23.0.90~6856 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=30076589d34c643f3e750078fcbb5bb085eaf0c9;p=emacs.git (start_hourglass): Suppress hourglass on tty frames. --- diff --git a/src/ChangeLog b/src/ChangeLog index 907f2c6cdc6..c04ca11131c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2008-03-27 Jason Rumney + + * w32fns.c (start_hourglass): Suppress hourglass on tty frames. + 2008-03-27 Kenichi Handa * charset.c (Fdefine_charset_internal): Change the way of diff --git a/src/w32fns.c b/src/w32fns.c index ed5decdc868..f314b4b4f7c 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -7280,6 +7280,10 @@ start_hourglass () int secs, msecs = 0; struct frame * f = SELECTED_FRAME (); + /* No cursors on non GUI frames. */ + if (!FRAME_W32_P (f)) + return; + cancel_hourglass (); if (INTEGERP (Vhourglass_delay)