]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid compilation warnings on MS-Windows
authorEli Zaretskii <eliz@gnu.org>
Sun, 16 Apr 2017 07:12:42 +0000 (10:12 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sun, 16 Apr 2017 07:12:42 +0000 (10:12 +0300)
* src/w32term.c (w32_read_socket): Avoid compiler warnings about
parentheses around assignment.
* src/w32fns.c (w32_createwindow): Remove unused variable
dwStyle.  Use "|=" where appropriate.

src/w32fns.c
src/w32term.c

index 62798f269ef11d2213ba51528a8b350481075dee..8dca03265b7c99653b6f3d233adca7f102531080 100644 (file)
@@ -2297,7 +2297,6 @@ w32_createwindow (struct frame *f, int *coords)
 {
   HWND hwnd = NULL, parent_hwnd = NULL;
   RECT rect;
-  DWORD dwStyle;
   int top, left;
   Lisp_Object border_width = Fcdr (Fassq (Qborder_width, f->param_alist));
 
@@ -2310,14 +2309,13 @@ w32_createwindow (struct frame *f, int *coords)
        {
          /* If we want a thin border, specify it here.  */
          if (NUMBERP (border_width) && (XINT (border_width) > 0))
-           f->output_data.w32->dwStyle =
-             f->output_data.w32->dwStyle | WS_BORDER;
+           f->output_data.w32->dwStyle |= WS_BORDER;
        }
       else
        /* To decorate a child frame, list all needed elements.  */
-       f->output_data.w32->dwStyle =
-         f->output_data.w32->dwStyle | WS_THICKFRAME | WS_CAPTION
-         | WS_MAXIMIZEBOX | WS_MINIMIZEBOX | WS_SYSMENU;
+       f->output_data.w32->dwStyle |= (WS_THICKFRAME | WS_CAPTION
+                                       | WS_MAXIMIZEBOX | WS_MINIMIZEBOX
+                                       | WS_SYSMENU);
     }
   else if (FRAME_UNDECORATED (f))
     {
@@ -2327,14 +2325,13 @@ w32_createwindow (struct frame *f, int *coords)
 
       /* If we want a thin border, specify it here.  */
       if (NUMBERP (border_width) && (XINT (border_width) > 0))
-       f->output_data.w32->dwStyle =
-         f->output_data.w32->dwStyle | WS_BORDER;
+       f->output_data.w32->dwStyle |= WS_BORDER;
     }
   else
     f->output_data.w32->dwStyle = WS_OVERLAPPEDWINDOW;
 
   /* Always clip children.  */
-  f->output_data.w32->dwStyle = f->output_data.w32->dwStyle | WS_CLIPCHILDREN;
+  f->output_data.w32->dwStyle |= WS_CLIPCHILDREN;
 
   rect.left = rect.top = 0;
   rect.right = FRAME_PIXEL_WIDTH (f);
index 1c3d243b62cec934c280f581dd2be56f08fbbaa8..36dc6364ae37fd7d12d60f38c86f7e1526a85877 100644 (file)
@@ -5136,7 +5136,8 @@ w32_read_socket (struct terminal *terminal,
            }
 #endif
 
-         if (f = x_window_to_frame (dpyinfo, msg.msg.hwnd))
+         f = x_window_to_frame (dpyinfo, msg.msg.hwnd);
+         if (f)
            x_clear_under_internal_border (f);
 
          check_visibility = 1;