From 2533c408d26998afb7f2a726962c4b2eeaa10f11 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Wed, 21 Feb 2001 13:54:09 +0000 Subject: [PATCH] (XTread_socket): Test x_output's hourglass_p instead of its busy_p flag. --- src/xterm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.5