diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-01-05 20:40:34 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-05 20:40:34 +0000 |
commit | e60b3c47d701e73ecbadb1b9a12bf82010cadae8 (patch) | |
tree | f35b78c3599dcf67ba74d61af28b6d0e747245bf | |
parent | d82a47dd0493ee976aa3f15ecdc9aea7da6ad5bf (diff) | |
download | vim-git-e60b3c47d701e73ecbadb1b9a12bf82010cadae8.tar.gz |
patch 8.2.4013: build failure without the spell featurev8.2.4013
Problem: Build failure without the spell feature.
Solution: Adjust #ifdefs.
-rw-r--r-- | src/errors.h | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/errors.h b/src/errors.h index ea0b77e4f..3b765a166 100644 --- a/src/errors.h +++ b/src/errors.h @@ -1771,10 +1771,12 @@ EXTERN char e_character_in_fol_low_or_upp_is_out_of_range[] INIT(= N_("E762: Character in FOL, LOW or UPP is out of range")); EXTERN char e_word_characters_differ_between_spell_files[] INIT(= N_("E763: Word characters differ between spell files")); +#endif #if defined(FEAT_SYN_HL) || defined(FEAT_COMPL_FUNC) EXTERN char e_option_str_is_not_set[] INIT(= N_("E764: Option '%s' is not set")); #endif +#ifdef FEAT_SPELL EXTERN char e_spellfile_does_not_have_nr_entries[] INIT(= N_("E765: 'spellfile' does not have %d entries")); #endif diff --git a/src/version.c b/src/version.c index 833299e5c..3fb926228 100644 --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4013, +/**/ 4012, /**/ 4011, |