From: Dmitry Antipov Date: Wed, 18 Sep 2013 13:18:39 +0000 (+0400) Subject: * w32term.c (note_mouse_movement): Fix last change. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1531 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=abd49271dbcbd1cc0ece36c6f78a142d91d2fa03;p=emacs.git * w32term.c (note_mouse_movement): Fix last change. --- diff --git a/src/w32term.c b/src/w32term.c index 7c0a3987d1e..805ee59ea4f 100644 --- a/src/w32term.c +++ b/src/w32term.c @@ -3311,7 +3311,7 @@ note_mouse_movement (struct frame *frame, MSG *msg) int mouse_x = LOWORD (msg->lParam); int mouse_y = HIWORD (msg->lParam); - if (!FRAME_W32_OUTPUT (frame)) + if (!FRAME_X_OUTPUT (frame)) return 0; dpyinfo = FRAME_DISPLAY_INFO (frame);