From 472895ad897123fef45db350691e22694c94c919 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 11 Nov 1993 02:33:43 +0000 Subject: [PATCH] (XTmouse_position): Undo roland's change. Fix bug in bfox change. --- src/xterm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xterm.c b/src/xterm.c index a5e47d2dac8..bc82f04623b 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -1776,7 +1776,7 @@ static void x_scroll_bar_report_motion (); static void XTmouse_position (f, bar_window, part, x, y, time) - FRAME_PTR f; + FRAME_PTR *f; Lisp_Object *bar_window; enum scroll_bar_part *part; Lisp_Object *x, *y; @@ -1785,7 +1785,7 @@ XTmouse_position (f, bar_window, part, x, y, time) FRAME_PTR f1; /* If this isn't an X-window frame, quit now. */ - if (!FRAME_X_P (f)) + if (!FRAME_X_P (*f)) return; BLOCK_INPUT; -- 2.39.5