diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-06-05 17:53:37 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-06-05 17:53:37 +0200 |
commit | 6c95fbc9ae64f3a7619070e830f0c35aa4f0ada9 (patch) | |
tree | e50c150b294d49b33b7133cff1809be9e864259f | |
parent | 966e58e413ffa88af8d748e697aa2999571fcd7b (diff) | |
download | vim-6c95fbc9ae64f3a7619070e830f0c35aa4f0ada9.zip |
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.
-rw-r--r-- | src/regexp.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/regexp.c b/src/regexp.c index de066a101..a27c594c2 100644 --- 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 index e07d2a8dc..c066c8175 100644 --- 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, |