From b1fe143d16e7356f6ac7c4a720fc0e9d07519073 Mon Sep 17 00:00:00 2001 From: Dave Love Date: Tue, 16 Jul 2002 14:35:32 +0000 Subject: [PATCH] (note_mouse_movement): Fix call of window_from_coordinates. --- src/xterm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xterm.c b/src/xterm.c index f3bda14581d..821866e638c 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -6645,7 +6645,7 @@ note_mouse_movement (frame, event) Lisp_Object window; static Lisp_Object last_window; - window = window_from_coordinates (frame, XINT (event->x), XINT (event->y), &area, 0); + window = window_from_coordinates (frame, event->x, event->y, &area, 0); /* Window will be selected only when it is not selected now and last mouse movement event was not in it. Minubuffer window -- 2.39.5