From 8bcee03ecf51ab4b88f00c6252b97833594ab3af Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Fri, 24 Oct 1997 19:58:39 +0000 Subject: [PATCH] (XTmouse_position): Handle INSIST < 0. --- src/xterm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xterm.c b/src/xterm.c index 3a13f896ff6..dce34e89031 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -2743,7 +2743,7 @@ XTmouse_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) x_scroll_bar_report_motion (fp, bar_window, part, x, y, time); else { @@ -2872,7 +2872,7 @@ XTmouse_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