Skip to content

Commit 21decdd

Browse files
committed
patch 7.4.1771
Problem: Warning for unused variable. Solution: Add #ifdef. (John Marriott)
1 parent 8a633e3 commit 21decdd

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

src/eval.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,9 @@ static char *e_listarg = N_("E686: Argument of %s must be a List");
9898
static char *e_listdictarg = N_("E712: Argument of %s must be a List or Dictionary");
9999
static char *e_listreq = N_("E714: List required");
100100
static char *e_dictreq = N_("E715: Dictionary required");
101+
#ifdef FEAT_QUICKFIX
101102
static char *e_stringreq = N_("E928: String required");
103+
#endif
102104
static char *e_toomanyarg = N_("E118: Too many arguments for function: %s");
103105
static char *e_dictkey = N_("E716: Key not present in Dictionary: %s");
104106
static char *e_funcexts = N_("E122: Function %s already exists, add ! to replace it");

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -753,6 +753,8 @@ static char *(features[]) =
753753

754754
static int included_patches[] =
755755
{ /* Add new patch number below this line */
756+
/**/
757+
1771,
756758
/**/
757759
1770,
758760
/**/

0 commit comments

Comments
 (0)