changeset 8971:138824071d4f v7.4.1771

commit https://github.com/vim/vim/commit/21decdd3e6d5ce3469a3c2743de1f4aada388d8c Author: Bram Moolenaar <Bram@vim.org> Date: Fri Apr 22 10:00:58 2016 +0200 patch 7.4.1771 Problem: Warning for unused variable. Solution: Add #ifdef. (John Marriott)
author Christian Brabandt <cb@256bit.org>
date Fri, 22 Apr 2016 10:15:06 +0200
parents 35209f2f3ff0
children 3dc3e63c60c4
files src/eval.c src/version.c
diffstat 2 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/eval.c
+++ b/src/eval.c
@@ -98,7 +98,9 @@ static char *e_listarg = N_("E686: Argum
 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");
--- a/src/version.c
+++ b/src/version.c
@@ -754,6 +754,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1771,
+/**/
     1770,
 /**/
     1769,