From: Richard M. Stallman Date: Mon, 25 May 1998 16:03:58 +0000 (+0000) Subject: (XTread_socket): Fix second argument of x_any_window_to_frame. X-Git-Tag: emacs-20.3~847 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c99babf20d52137cf55413fda135e5664a2fa42d;p=emacs.git (XTread_socket): Fix second argument of x_any_window_to_frame. --- diff --git a/src/xterm.c b/src/xterm.c index 7dc49af3f9f..4bde3ce0bba 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -3845,7 +3845,7 @@ XTread_socket (sd, bufp, numchars, expected) #ifdef HAVE_X_I18N { struct frame *f1 = x_any_window_to_frame (dpyinfo, - &event.xclient.window); + event.xclient.window); /* The necessity of the following line took me a full work-day to decipher from the docs!! */ if (f1 != 0 && FRAME_XIC (f1) && XFilterEvent (&event, None))