]> git.eshelyaron.com Git - emacs.git/commitdiff
(w32_wnd_proc) [WM_LBUTTON_DOWN, WM_RBUTTON_DOWN, WM_LBUTTON_UP,
authorJason Rumney <jasonr@gnu.org>
Sun, 27 Feb 2000 21:36:00 +0000 (21:36 +0000)
committerJason Rumney <jasonr@gnu.org>
Sun, 27 Feb 2000 21:36:00 +0000 (21:36 +0000)
WM_RBUTTON_UP]: Do not treat 4 or more button mice as 2 button mice.

src/w32fns.c

index ea52c2d3808a243bb2089e3bb1f8ac70d1e47ae0..45ea7b1f4758d3bdcd67f603fb34ace1cbc0262f 100644 (file)
@@ -124,7 +124,7 @@ Lisp_Object Vw32_enable_caps_lock;
 /* Modifier associated with Scroll Lock, or nil to act as a normal key.  */
 Lisp_Object Vw32_scroll_lock_modifier;
 
-/* Switch to control whether we inhibit requests for synthesyzed bold
+/* Switch to control whether we inhibit requests for synthesized bold
    and italic versions of fonts.  */
 Lisp_Object Vw32_enable_synthesized_fonts;
 
@@ -4212,7 +4212,7 @@ w32_wnd_proc (hwnd, msg, wParam, lParam)
         are used together, but only if user has two button mouse. */
     case WM_LBUTTONDOWN:
     case WM_RBUTTONDOWN:
-      if (XINT (Vw32_num_mouse_buttons) == 3)
+      if (XINT (Vw32_num_mouse_buttons) > 2)
        goto handle_plain_button;
 
       {
@@ -4275,7 +4275,7 @@ w32_wnd_proc (hwnd, msg, wParam, lParam)
 
     case WM_LBUTTONUP:
     case WM_RBUTTONUP:
-      if (XINT (Vw32_num_mouse_buttons) == 3)
+      if (XINT (Vw32_num_mouse_buttons) > 2)
        goto handle_plain_button;
 
       {