aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-05-25 16:03:58 +0000
committerRichard M. Stallman1998-05-25 16:03:58 +0000
commitc99babf20d52137cf55413fda135e5664a2fa42d (patch)
treefb0f639ea60f9be42b1de892e58907ee68b618d3
parent9e1348eee9cd9ea4a4661a1487a5fc8a1e21a692 (diff)
downloademacs-c99babf20d52137cf55413fda135e5664a2fa42d.tar.gz
emacs-c99babf20d52137cf55413fda135e5664a2fa42d.zip
(XTread_socket): Fix second argument of x_any_window_to_frame.
-rw-r--r--src/xterm.c2
1 files changed, 1 insertions, 1 deletions
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)
3845#ifdef HAVE_X_I18N 3845#ifdef HAVE_X_I18N
3846 { 3846 {
3847 struct frame *f1 = x_any_window_to_frame (dpyinfo, 3847 struct frame *f1 = x_any_window_to_frame (dpyinfo,
3848 &event.xclient.window); 3848 event.xclient.window);
3849 /* The necessity of the following line took me 3849 /* The necessity of the following line took me
3850 a full work-day to decipher from the docs!! */ 3850 a full work-day to decipher from the docs!! */
3851 if (f1 != 0 && FRAME_XIC (f1) && XFilterEvent (&event, None)) 3851 if (f1 != 0 && FRAME_XIC (f1) && XFilterEvent (&event, None))