]> git.eshelyaron.com Git - emacs.git/commitdiff
(w32_read_socket): Fix WM_MOUSEWHEEL assignment.
authorJason Rumney <jasonr@gnu.org>
Wed, 27 Aug 2003 22:37:14 +0000 (22:37 +0000)
committerJason Rumney <jasonr@gnu.org>
Wed, 27 Aug 2003 22:37:14 +0000 (22:37 +0000)
src/ChangeLog
src/w32term.c

index 7f6c3a32770214d682985ef5ca3fbffc8d06e16f..a5e0828471c5d49c10a3c81339a32dad75957826 100644 (file)
@@ -1,5 +1,7 @@
 2003-08-27  Jason Rumney  <jasonr@gnu.org>
 
+       * w32fns.c (syms_of_w32fns): Remove non-existent functions.
+
        * w32term.c (w32_read_socket): Fix WM_MOUSEWHEEL assignment.
 
 2003-08-26  Terje Rosten <terjeros@phys.ntnu.no>
index 539df459402b782f21b1fb7ea0e5313c1aed3d80..d98f93e439f5c9186032efcdd7c6ba1f3c394519 100644 (file)
@@ -4778,7 +4778,7 @@ w32_read_socket (sd, bufp, numchars, expected)
          if (msg.msg.message == msh_mousewheel)
            {
              /* Forward MSH_MOUSEWHEEL as WM_MOUSEWHEEL.  */
-             msg.msg.message == WM_MOUSEWHEEL;
+             msg.msg.message = WM_MOUSEWHEEL;
              prepend_msg (&msg);
            }
          break;