From: Gerd Moellmann Date: Wed, 21 Feb 2001 13:54:09 +0000 (+0000) Subject: (XTread_socket): Test x_output's hourglass_p instead X-Git-Tag: emacs-pretest-21.0.99~247 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2533c408d26998afb7f2a726962c4b2eeaa10f11;p=emacs.git (XTread_socket): Test x_output's hourglass_p instead of its busy_p flag. --- diff --git a/src/xterm.c b/src/xterm.c index abe2ee0fd51..c0e752af452 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -10098,7 +10098,7 @@ XTread_socket (sd, bufp, numchars, expected) /* EnterNotify counts as mouse movement, so update things that depend on mouse position. */ - if (f && !f->output_data.x->busy_p) + if (f && !f->output_data.x->hourglass_p) note_mouse_movement (f, &event.xmotion); goto OTHER; }