return;
}
+ FOR_EACH_FRAME (tail, frame)
+ {
+ if (FRAME_X_P (XFRAME (frame))
+ && (FRAME_DISPLAY_INFO (XFRAME (frame))
+ == dpyinfo))
+ XFRAME (frame)->mouse_moved = false;
+ }
+
if (!EQ (Vx_use_fast_mouse_position, Qreally_fast))
{
/* This means that Emacs should select a frame and report the
window beneath the pointer, and was borrowed from
haiku_mouse_position in haikuterm.c. */
- FOR_EACH_FRAME (tail, frame)
- {
- if (FRAME_X_P (XFRAME (frame))
- && (FRAME_DISPLAY_INFO (XFRAME (frame))
- == dpyinfo))
- XFRAME (frame)->mouse_moved = false;
- }
-
if (gui_mouse_grabbed (dpyinfo)
&& !EQ (track_mouse, Qdropping)
&& !EQ (track_mouse, Qdrag_source))
}
else
{
- /* This means Emacs should only report the coordinates of the
- last mouse motion. */
+ /* This means Emacs should only report the coordinates of the last
+ mouse motion. */
if (dpyinfo->last_mouse_motion_frame)
{
*y = make_fixnum (dpyinfo->last_mouse_motion_y);
*bar_window = Qnil;
*part = scroll_bar_nowhere;
-
- FOR_EACH_FRAME (tail, frame)
- {
- if (FRAME_X_P (XFRAME (frame))
- && (FRAME_DISPLAY_INFO (XFRAME (frame))
- == dpyinfo))
- XFRAME (frame)->mouse_moved = false;
- }
-
dpyinfo->last_mouse_motion_frame->mouse_moved = false;
}
}