aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2001-02-21 13:54:09 +0000
committerGerd Moellmann2001-02-21 13:54:09 +0000
commit2533c408d26998afb7f2a726962c4b2eeaa10f11 (patch)
tree51f7f338f615b0f747c87be8451ea21c72f26b45 /src
parent6a2b7977730ee7c6c31980ae852fa42e8c2ecf52 (diff)
downloademacs-2533c408d26998afb7f2a726962c4b2eeaa10f11.tar.gz
emacs-2533c408d26998afb7f2a726962c4b2eeaa10f11.zip
(XTread_socket): Test x_output's hourglass_p instead
of its busy_p flag.
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c2
1 files changed, 1 insertions, 1 deletions
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)
10098 10098
10099 /* EnterNotify counts as mouse movement, 10099 /* EnterNotify counts as mouse movement,
10100 so update things that depend on mouse position. */ 10100 so update things that depend on mouse position. */
10101 if (f && !f->output_data.x->busy_p) 10101 if (f && !f->output_data.x->hourglass_p)
10102 note_mouse_movement (f, &event.xmotion); 10102 note_mouse_movement (f, &event.xmotion);
10103 goto OTHER; 10103 goto OTHER;
10104 } 10104 }