Skip to content

Commit 6c95fbc

Browse files
committed
patch 8.0.0624: warning for unused variable in tiny build
Problem: Warning for unused variable in tiny build. (Tony Mechelynck) Solution: Add an #ifdef.
1 parent 966e58e commit 6c95fbc

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/regexp.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,9 @@ static int re_mult_next(char *what);
359359

360360
static char_u e_missingbracket[] = N_("E769: Missing ] after %s[");
361361
static char_u e_reverse_range[] = N_("E944: Reverse range in character class");
362+
#ifdef FEAT_MBYTE
362363
static char_u e_large_class[] = N_("E945: Range too large in character class");
364+
#endif
363365
static char_u e_unmatchedpp[] = N_("E53: Unmatched %s%%(");
364366
static char_u e_unmatchedp[] = N_("E54: Unmatched %s(");
365367
static char_u e_unmatchedpar[] = N_("E55: Unmatched %s)");

src/version.c

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

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
624,
767769
/**/
768770
623,
769771
/**/

0 commit comments

Comments
 (0)