diff options
| author | Dave Love | 2002-07-16 14:35:32 +0000 |
|---|---|---|
| committer | Dave Love | 2002-07-16 14:35:32 +0000 |
| commit | b1fe143d16e7356f6ac7c4a720fc0e9d07519073 (patch) | |
| tree | 18388d409f6a83cf794599541b334a4a27ba4c07 /src | |
| parent | 511dd8e757b2e5a7bb7ef38ca319e1ad7fd2a3ec (diff) | |
| download | emacs-b1fe143d16e7356f6ac7c4a720fc0e9d07519073.tar.gz emacs-b1fe143d16e7356f6ac7c4a720fc0e9d07519073.zip | |
(note_mouse_movement): Fix call of window_from_coordinates.
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 f3bda14581d..821866e638c 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -6645,7 +6645,7 @@ note_mouse_movement (frame, event) | |||
| 6645 | Lisp_Object window; | 6645 | Lisp_Object window; |
| 6646 | static Lisp_Object last_window; | 6646 | static Lisp_Object last_window; |
| 6647 | 6647 | ||
| 6648 | window = window_from_coordinates (frame, XINT (event->x), XINT (event->y), &area, 0); | 6648 | window = window_from_coordinates (frame, event->x, event->y, &area, 0); |
| 6649 | 6649 | ||
| 6650 | /* Window will be selected only when it is not selected now and | 6650 | /* Window will be selected only when it is not selected now and |
| 6651 | last mouse movement event was not in it. Minubuffer window | 6651 | last mouse movement event was not in it. Minubuffer window |