From: Thien-Thi Nguyen Date: Sat, 7 May 2005 00:47:13 +0000 (+0000) Subject: (start_hourglass): Do nothing when running on a tty. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=dfd4744bdd7ca7387d7a5554eeb21de930a9eb48;p=emacs.git (start_hourglass): Do nothing when running on a tty. --- diff --git a/src/ChangeLog b/src/ChangeLog index 07ec33b0f3e..57e2835becc 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2005-05-07 Thien-Thi Nguyen + + * xfns.c (start_hourglass): Do nothing when running on a tty. + 2005-05-01 Thien-Thi Nguyen * sysdep.c (get_frame_size) [VMS]: Use a fresh i/o channel. diff --git a/src/xfns.c b/src/xfns.c index 7bf4b6654d0..c86f780b70b 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -10338,6 +10338,10 @@ start_hourglass () EMACS_TIME delay; int secs, usecs = 0; + /* Don't bother for ttys. */ + if (NILP (Vwindow_system)) + return; + cancel_hourglass (); if (INTEGERP (Vhourglass_delay)