]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 7.4.1771 v7.4.1771
authorBram Moolenaar <Bram@vim.org>
Fri, 22 Apr 2016 08:00:58 +0000 (10:00 +0200)
committerBram Moolenaar <Bram@vim.org>
Fri, 22 Apr 2016 08:00:58 +0000 (10:00 +0200)
Problem:    Warning for unused variable.
Solution:   Add #ifdef. (John Marriott)

src/eval.c
src/version.c

index 3542b777f4eacaa13ef9f0888d4b4a4ad0736f61..e7712916e8d83664d11ae1de32b6f5fca20f5e4f 100644 (file)
@@ -98,7 +98,9 @@ static char *e_listarg = N_("E686: Argument of %s must be a List");
 static char *e_listdictarg = N_("E712: Argument of %s must be a List or Dictionary");
 static char *e_listreq = N_("E714: List required");
 static char *e_dictreq = N_("E715: Dictionary required");
+#ifdef FEAT_QUICKFIX
 static char *e_stringreq = N_("E928: String required");
+#endif
 static char *e_toomanyarg = N_("E118: Too many arguments for function: %s");
 static char *e_dictkey = N_("E716: Key not present in Dictionary: %s");
 static char *e_funcexts = N_("E122: Function %s already exists, add ! to replace it");
index bb32541ddbe169881853b042d73e4c282837325b..725d77472af03ff82b21cfe5cdcb61653e7190e4 100644 (file)
@@ -753,6 +753,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1771,
 /**/
     1770,
 /**/