summaryrefslogtreecommitdiffstats
path: root/src/errors.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2023-01-01 20:31:30 +0000
committerBram Moolenaar <Bram@vim.org>2023-01-01 20:31:30 +0000
commit993dbc33a82a4ed877ee76265d6483b190e2feb1 (patch)
tree92141b73506eab3df700826ab4125d844d15e3c4 /src/errors.h
parent6acf757c6a11c0653b0132a17c22983856da5ad6 (diff)
patch 9.0.1128: build failurev9.0.1128
Problem: Build failure. Solution: Add type cast. Add missing error messages.
Diffstat (limited to 'src/errors.h')
-rw-r--r--src/errors.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/errors.h b/src/errors.h
index e33f2e66b2..26629b0302 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -3401,3 +3401,9 @@ EXTERN char e_member_not_found_on_class_str_str[]
EXTERN char e_cannot_add_textprop_with_text_after_using_textprop_with_negative_id[]
INIT(= N_("E1339: Cannot add a textprop with text after using a textprop with a negative id"));
#endif
+#ifdef FEAT_EVAL
+EXTERN char e_argument_already_declared_in_class_str[]
+ INIT(= N_("E1340: Argument already declared in the class: %s"));
+EXTERN char e_variable_already_declared_in_class_str[]
+ INIT(= N_("E1341: Variable already declared in the class: %s"));
+#endif