1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-05 19:31:02 -08:00

(w32_mouse_position): Handle INSIST < 0.

This commit is contained in:
Karl Heuer 1997-10-24 19:58:22 +00:00
parent 66e827dc32
commit 95fa970dd6

View file

@ -1748,7 +1748,7 @@ w32_mouse_position (fp, insist, bar_window, part, x, y, time)
BLOCK_INPUT;
if (! NILP (last_mouse_scroll_bar))
if (! NILP (last_mouse_scroll_bar) && insist == 0)
/* This is never called at the moment. */
x_scroll_bar_report_motion (fp, bar_window, part, x, y, time);
else
@ -1790,7 +1790,7 @@ w32_mouse_position (fp, insist, bar_window, part, x, y, time)
}
}
if (f1 == 0 && insist)
if (f1 == 0 && insist > 0)
f1 = selected_frame;
if (f1)