]> granicus.if.org Git - vim/commitdiff
patch 8.0.0139 v8.0.0139
authorBram Moolenaar <Bram@vim.org>
Mon, 2 Jan 2017 16:26:00 +0000 (17:26 +0100)
committerBram Moolenaar <Bram@vim.org>
Mon, 2 Jan 2017 16:26:00 +0000 (17:26 +0100)
Problem:    Warning for unused argument.
Solution:   Add UNUSED.

src/ex_docmd.c
src/version.c

index 0c6536c3e9208d48d9c3bf0267c5e359b1a29d85..b73eb95c9dd86bd2db52125ad560a69af49111b0 100644 (file)
@@ -4370,7 +4370,7 @@ get_address(
     int                addr_type,  /* flag: one of ADDR_LINES, ... */
     int                skip,       /* only skip the address, don't use it */
     int                to_other_file,  /* flag: may jump to other file */
-    int                address_count)      /* 1 for first address, >1 after comma */
+    int                address_count UNUSED) /* 1 for first address, >1 after comma */
 {
     int                c;
     int                i;
@@ -7589,7 +7589,7 @@ ex_all(exarg_T *eap)
 #endif /* FEAT_WINDOWS */
 
     static void
-ex_hide(exarg_T *eap)
+ex_hide(exarg_T *eap UNUSED)
 {
     /* ":hide" or ":hide | cmd": hide current window */
 #ifdef FEAT_WINDOWS
index d8993da8e8742f616eede5e7c031d40da9aa7a7b..9364c99fc72ed74838efb5f5a2539085b93ae087 100644 (file)
@@ -764,6 +764,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    139,
 /**/
     138,
 /**/