summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-01 16:31:48 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-01 16:31:48 +0000
commit0f7a5e758c5d8be2d8f1ab4a145d1636a36d18b2 (patch)
tree28f73295005d2b114e31f5460d64768789f8adb1
parent3a846e6bca25bd3d0addcd9ed3bdd9a6774adbe5 (diff)
downloadvim-git-0f7a5e758c5d8be2d8f1ab4a145d1636a36d18b2.tar.gz
patch 8.2.3973: tiny build failsv8.2.3973
Problem: Tiny build fails. Solution: Adjust #ifdefs
-rw-r--r--src/errors.h2
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/errors.h b/src/errors.h
index 27dde8ff1..1ab0fb642 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -690,11 +690,13 @@ EXTERN char e_endwhile_without_while[]
INIT(= N_("E588: :endwhile without :while"));
EXTERN char e_endfor_without_for[]
INIT(= N_("E588: :endfor without :for"));
+#endif
EXTERN char e_winheight_cannot_be_smaller_than_winminheight[]
INIT(= N_("E591: 'winheight' cannot be smaller than 'winminheight'"));
EXTERN char e_winwidth_cannot_be_smaller_than_winminwidth[]
INIT(= N_("E592: 'winwidth' cannot be smaller than 'winminwidth'"));
+#ifdef FEAT_EVAL
EXTERN char e_missing_endtry[]
INIT(= N_("E600: Missing :endtry"));
EXTERN char e_endtry_without_try[]
diff --git a/src/version.c b/src/version.c
index f98cf4352..1fc6dac72 100644
--- a/src/version.c
+++ b/src/version.c
@@ -750,6 +750,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 3973,
+/**/
3972,
/**/
3971,