# HG changeset patch # User Thien-Thi Nguyen # Date 1115426551 0 # Node ID 19e471e1a080fce5766905c71eef382cd7e6272d # Parent 892a16c3b8868190e4763db8ad97be02aa7aab15 (start_hourglass): Do nothing when running on a tty. diff -r 892a16c3b886 -r 19e471e1a080 src/xfns.c --- a/src/xfns.c Sat May 07 00:07:48 2005 +0000 +++ b/src/xfns.c Sat May 07 00:42:31 2005 +0000 @@ -4384,6 +4384,10 @@ EMACS_TIME delay; int secs, usecs = 0; + /* Don't bother for ttys. */ + if (NILP (Vwindow_system)) + return; + cancel_hourglass (); if (INTEGERP (Vhourglass_delay)