From 0fc8f792bac83d74d121d0421a055d77b2f9d264 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Mon, 1 Apr 2002 19:49:39 +0000 Subject: [PATCH] (XTread_socket): Fix int/Lisp_Object confusion. --- src/xterm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xterm.c b/src/xterm.c index 7962d1b4d53..bf1e01198cf 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -10884,7 +10884,7 @@ XTread_socket (sd, bufp, numchars, expected) int area; window = window_from_coordinates (f, - XINT (event.xmotion.x), XINT (event.xmotion.y), + event.xmotion.x, event.xmotion.y, &area, 0); /* Window will be selected only when it is not selected now and -- 2.39.2