]> granicus.if.org Git - vim/commitdiff
patch 8.0.0624: warning for unused variable in tiny build v8.0.0624
authorBram Moolenaar <Bram@vim.org>
Mon, 5 Jun 2017 15:53:37 +0000 (17:53 +0200)
committerBram Moolenaar <Bram@vim.org>
Mon, 5 Jun 2017 15:53:37 +0000 (17:53 +0200)
Problem:    Warning for unused variable in tiny build. (Tony Mechelynck)
Solution:   Add an #ifdef.

src/regexp.c
src/version.c

index de066a1015c8dfaf6096d3ca854ff711266e927d..a27c594c2a7a7152571f6716908d85bcc3d1944b 100644 (file)
@@ -359,7 +359,9 @@ static int re_mult_next(char *what);
 
 static char_u e_missingbracket[] = N_("E769: Missing ] after %s[");
 static char_u e_reverse_range[] = N_("E944: Reverse range in character class");
+#ifdef FEAT_MBYTE
 static char_u e_large_class[] = N_("E945: Range too large in character class");
+#endif
 static char_u e_unmatchedpp[] = N_("E53: Unmatched %s%%(");
 static char_u e_unmatchedp[] = N_("E54: Unmatched %s(");
 static char_u e_unmatchedpar[] = N_("E55: Unmatched %s)");
index e07d2a8dc95146753b7f87dd2bd3a6d38b6ada3d..c066c8175551d89899e9add40a17c384fe7a8b0c 100644 (file)
@@ -764,6 +764,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    624,
 /**/
     623,
 /**/