diff options
| author | Stefan Monnier | 2002-04-01 19:49:39 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2002-04-01 19:49:39 +0000 |
| commit | 0fc8f792bac83d74d121d0421a055d77b2f9d264 (patch) | |
| tree | 28e8cc4a21d90fddfbb6ab1a5635a3e727a6b0e9 /src | |
| parent | 379a66de03c3e2edf81a80dbd3154835ca9c8c0b (diff) | |
| download | emacs-0fc8f792bac83d74d121d0421a055d77b2f9d264.tar.gz emacs-0fc8f792bac83d74d121d0421a055d77b2f9d264.zip | |
(XTread_socket): Fix int/Lisp_Object confusion.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xterm.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
| 10884 | int area; | 10884 | int area; |
| 10885 | 10885 | ||
| 10886 | window = window_from_coordinates (f, | 10886 | window = window_from_coordinates (f, |
| 10887 | XINT (event.xmotion.x), XINT (event.xmotion.y), | 10887 | event.xmotion.x, event.xmotion.y, |
| 10888 | &area, 0); | 10888 | &area, 0); |
| 10889 | 10889 | ||
| 10890 | /* Window will be selected only when it is not selected now and | 10890 | /* Window will be selected only when it is not selected now and |