summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-09-16 21:41:53 +0200
committerBram Moolenaar <Bram@vim.org>2020-09-16 21:41:53 +0200
commit916911f598718bc76bc6b87ed703d2805fa49c53 (patch)
treee1b0f1ab219129dd185b14bd8e920ad5f74745d2
parenta187c43cfe8863d48b2159d695fedcb71f8525c1 (diff)
patch 8.2.1699: build failure due to missing error messagev8.2.1699
Problem: Build failure due to missing error message. Solution: Add error message.
-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 9513a4260d..d12e97f6f3 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -266,4 +266,6 @@ EXTERN char e_cannot_change_dict[]
INIT(= N_("E1120: Cannot change dict"));
EXTERN char e_cannot_change_dict_item[]
INIT(= N_("E1121: Cannot change dict item"));
+EXTERN char e_variable_is_locked_str[]
+ INIT(= N_("E1122: Variable is locked: %s"));
#endif
diff --git a/src/version.c b/src/version.c
index ea9a50acb4..e77c7957e6 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 */
/**/
+ 1699,
+/**/
1698,
/**/
1697,