diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-07-27 22:35:42 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-07-27 22:35:42 +0200 |
commit | 9088784972c0ed72997de8752964d6b587218778 (patch) | |
tree | 79b630ec691faf3f027677cd6a9f09dc137934f7 | |
parent | f723701de0636ad8b4aad6179b322f72b04354b9 (diff) | |
download | vim-git-9088784972c0ed72997de8752964d6b587218778.tar.gz |
patch 8.2.3231: build failure with small featuresv8.2.3231
Problem: Build failure with small features.
Solution: Adjust #ifdef.
-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 b76b92fa5..3cbdb53ee 100644 --- a/src/errors.h +++ b/src/errors.h @@ -224,8 +224,10 @@ EXTERN char e_using_number_as_string[] INIT(= N_("E1024: Using a Number as a String")); EXTERN char e_using_rcurly_outside_if_block_scope[] INIT(= N_("E1025: Using } outside of a block scope")); +#endif EXTERN char e_missing_rcurly[] INIT(= N_("E1026: Missing }")); +#ifdef FEAT_EVAL EXTERN char e_missing_return_statement[] INIT(= N_("E1027: Missing return statement")); EXTERN char e_compiling_def_function_failed[] diff --git a/src/version.c b/src/version.c index 425f8f311..e6491db0f 100644 --- a/src/version.c +++ b/src/version.c @@ -756,6 +756,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3231, +/**/ 3230, /**/ 3229, |