From 95fa970dd693e610937d282d2777b9ab453dfb45 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Fri, 24 Oct 1997 19:58:22 +0000 Subject: [PATCH] (w32_mouse_position): Handle INSIST < 0. --- src/w32term.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/w32term.c b/src/w32term.c index a433abc6bb4..053c148bc3e 100644 --- a/src/w32term.c +++ b/src/w32term.c @@ -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) -- 2.39.2