From: Richard M. Stallman Date: Mon, 13 May 1996 15:24:25 +0000 (+0000) Subject: (note_mouse_movement): Upwards mouse movement recognition corrected. X-Git-Tag: emacs-19.34~633 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9bf7b6aa500cc50a512770ddfd4f072aedb53cea;p=emacs.git (note_mouse_movement): Upwards mouse movement recognition corrected. --- diff --git a/src/w32term.c b/src/w32term.c index bde3a04986b..7e9c78dde33 100644 --- a/src/w32term.c +++ b/src/w32term.c @@ -1288,7 +1288,7 @@ note_mouse_movement (frame, msg) /* Has the mouse moved off the glyph it was on at the last sighting? */ else if (LOWORD (msg->lParam) < last_mouse_glyph.left || LOWORD (msg->lParam) > last_mouse_glyph.right - || HIWORD (msg->lParam) < last_mouse_glyph.left + || HIWORD (msg->lParam) < last_mouse_glyph.top || HIWORD (msg->lParam) > last_mouse_glyph.bottom) { frame->mouse_moved = 1;