]> git.eshelyaron.com Git - emacs.git/commitdiff
src/w32*.c: Silence compiler warnings.
authorJuanma Barranquero <lekktu@gmail.com>
Sun, 15 Dec 2013 17:40:44 +0000 (18:40 +0100)
committerJuanma Barranquero <lekktu@gmail.com>
Sun, 15 Dec 2013 17:40:44 +0000 (18:40 +0100)
* w32fns.c (Fw32_shell_execute): Remove unused local variable.
(Fx_file_dialog): Add parentheses around && to silence warning.

* w32term.c (construct_drag_n_drop): Remove unused local variable.

src/ChangeLog
src/w32fns.c
src/w32term.c

index 90b6525a55d6d2964f056fb69257cfdcef523755..1b19a309c0402b22201f455cbd7f9838d5f0ac64 100644 (file)
@@ -1,3 +1,10 @@
+2013-12-15  Juanma Barranquero  <lekktu@gmail.com>
+
+       * w32fns.c (Fw32_shell_execute): Remove unused local variable.
+       (Fx_file_dialog): Add parentheses around && to silence warning.
+
+       * w32term.c (construct_drag_n_drop): Remove unused local variable.
+
 2013-12-15  Eli Zaretskii  <eliz@gnu.org>
 
        * xdisp.c (extend_face_to_end_of_line): Extend background of
index e5d899d8a15aab25f49498a7db94f7f5accc4430..8576d478e42d88afe3956e8caab5943e5580da0d 100644 (file)
@@ -6667,9 +6667,9 @@ Otherwise, if ONLY-DIR-P is non-nil, the user can only select directories.  */)
 
         /* Strip the dummy filename off the end of the string if we
            added it to select a directory.  */
-        if (use_unicode && file_details_w->nFilterIndex == 2
+        if ((use_unicode && file_details_w->nFilterIndex == 2)
 #ifndef NTGUI_UNICODE
-           || !use_unicode && file_details_a->nFilterIndex == 2
+           || (!use_unicode && file_details_a->nFilterIndex == 2)
 #endif
            )
          filename = Ffile_name_directory (filename);
@@ -6965,8 +6965,6 @@ an integer representing a ShowWindow flag:
        }
       if (STRINGP (parameters))
        {
-         int len;
-
          parameters = ENCODE_SYSTEM (parameters);
          params_a = SSDATA (parameters);
        }
index 6537b2205fe7ce4757dc740d51731aca9ea2e4a2..e3cdc1d083830b8a9567b744874bfc8b735c4f72 100644 (file)
@@ -3137,7 +3137,7 @@ construct_drag_n_drop (struct input_event *result, W32Msg *msg, struct frame *f)
   char name_a[MAX_PATH];
   char file[MAX_UTF8_PATH];
 #endif
-  int i, len;
+  int i;
 
   result->kind = DRAG_N_DROP_EVENT;
   result->code = 0;