# HG changeset patch # User Christian Brabandt # Date 1496678404 -7200 # Node ID e691ebe6558e9e106dd438ca41bd29bc568b87ee # Parent 795d1ba61c1bce13751b2f7dc11d5c569c76091c patch 8.0.0624: warning for unused variable in tiny build commit https://github.com/vim/vim/commit/6c95fbc9ae64f3a7619070e830f0c35aa4f0ada9 Author: Bram Moolenaar Date: Mon Jun 5 17:53:37 2017 +0200 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. diff --git a/src/regexp.c b/src/regexp.c --- a/src/regexp.c +++ b/src/regexp.c @@ -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)"); diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 624, +/**/ 623, /**/ 622,