# HG changeset patch # User Gerd Moellmann # Date 982763649 0 # Node ID 94d6ad393a7490b4c31fc89ba64cc597d7d63d41 # Parent 3c4e5b3d7c4a4b2e338d0972ceb82eb6d7d4cc00 (XTread_socket): Test x_output's hourglass_p instead of its busy_p flag. diff -r 3c4e5b3d7c4a -r 94d6ad393a74 src/xterm.c --- a/src/xterm.c Wed Feb 21 13:52:52 2001 +0000 +++ b/src/xterm.c Wed Feb 21 13:54:09 2001 +0000 @@ -10098,7 +10098,7 @@ /* 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; }