# HG changeset patch # User Richard M. Stallman # Date 832001065 0 # Node ID a270351f6e0c862678cbc9843d1dc9a22d61dfaf # Parent ae9888a753486212637eef7e5d6da1e133049da1 (note_mouse_movement): Upwards mouse movement recognition corrected. diff -r ae9888a75348 -r a270351f6e0c src/w32term.c --- a/src/w32term.c Mon May 13 15:06:32 1996 +0000 +++ b/src/w32term.c Mon May 13 15:24:25 1996 +0000 @@ -1288,7 +1288,7 @@ /* 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;