summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-07-20 22:29:19 +0200
committerBram Moolenaar <Bram@vim.org>2021-07-20 22:29:19 +0200
commit11d7e62f1d29fdd7a88b86131b7bbb853f29fe8b (patch)
tree6b8a8022826ae4eee1f9418dc386c9b56e341ce1 /src
parent63cb6567f0153c35dc75cbc09039ff5d0a7b60e3 (diff)
patch 8.2.3192: build failure with small versionv8.2.3192
Problem: Build failure with small version (Tony Mechelynck). Solution: Remove stray #ifdef.
Diffstat (limited to 'src')
-rw-r--r--src/errors.h2
-rw-r--r--src/version.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/errors.h b/src/errors.h
index 6a6829c6f6..ce0d682dd9 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -58,7 +58,6 @@ EXTERN char e_hebrew_cannot_be_used_not_enabled_at_compile_time[]
#endif
EXTERN char e_farsi_support_has_been_removed[]
INIT(= N_("E27: Farsi support has been removed\n"));
-#ifdef FEAT_EVAL
#if defined(FEAT_SEARCH_EXTRA) || defined(FEAT_SYN_HL)
EXTERN char e_no_such_highlight_group_name_str[]
INIT(= N_("E28: No such highlight group name: %s"));
@@ -109,7 +108,6 @@ EXTERN char e_undefined_variable_str[]
INIT(= N_("E121: Undefined variable: %s"));
EXTERN char e_undefined_variable_char_str[]
INIT(= N_("E121: Undefined variable: %c:%s"));
-#endif
#ifndef FEAT_DIGRAPHS
EXTERN char e_no_digraphs_version[]
INIT(= N_("E196: No digraphs in this version"));
diff --git a/src/version.c b/src/version.c
index e6f81ca49a..cd2069353b 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 */
/**/
+ 3192,
+/**/
3191,
/**/
3190,