summaryrefslogtreecommitdiffstats
path: root/src/errors.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-12-05 21:46:34 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-05 21:46:34 +0000
commit12f3c1b77fb39dc338304d5484cdbc99da27389a (patch)
tree547976b1abc154007b9e8bfed81a69b7b457706e /src/errors.h
parente5710a02cb78c2a0a868ea55740835c78ddecbb4 (diff)
patch 8.2.3749: error messages are everywherev8.2.3749
Problem: Error messages are everywhere. Solution: Move more error messages to errors.h and adjust the names.
Diffstat (limited to 'src/errors.h')
-rw-r--r--src/errors.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/errors.h b/src/errors.h
index 96aef67fcb..49df3572de 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -134,6 +134,40 @@ EXTERN char e_invalid_character_after_str_at[]
INIT(= N_("E59: invalid character after %s@"));
EXTERN char e_too_many_complex_str_curly[]
INIT(= N_("E60: Too many complex %s{...}s"));
+EXTERN char e_nested_str[]
+ INIT(= N_("E61: Nested %s*"));
+EXTERN char e_nested_str_chr[]
+ INIT(= N_("E62: Nested %s%c"));
+EXTERN char e_invalid_use_of_underscore[]
+ INIT(= N_("E63: invalid use of \\_"));
+EXTERN char e_str_chr_follows_nothing[]
+ INIT(= N_("E64: %s%c follows nothing"));
+EXTERN char e_illegal_back_reference[]
+ INIT(= N_("E65: Illegal back reference"));
+#ifdef FEAT_SYN_HL
+EXTERN char e_z_not_allowed_here[]
+ INIT(= N_("E66: \\z( not allowed here"));
+EXTERN char e_z1_z9_not_allowed_here[]
+ INIT(= N_("E67: \\z1 - \\z9 not allowed here"));
+#endif
+EXTERN char e_missing_sb_after_str[]
+ INIT(= N_("E69: Missing ] after %s%%["));
+EXTERN char e_empty_str_brackets[]
+ INIT(= N_("E70: Empty %s%%[]"));
+EXTERN char e_invalid_character_after_str[]
+ INIT(= N_("E71: Invalid character after %s%%"));
+EXTERN char e_close_error_on_swap_file[]
+ INIT(= N_("E72: Close error on swap file"));
+EXTERN char e_tag_stack_empty[]
+ INIT(= N_("E73: tag stack empty"));
+EXTERN char e_command_too_complex[]
+ INIT(= N_("E74: Command too complex"));
+EXTERN char e_name_too_long[]
+ INIT(= N_("E75: Name too long"));
+EXTERN char e_too_many_brackets[]
+ INIT(= N_("E76: Too many ["));
+EXTERN char e_too_many_file_names[]
+ INIT(= N_("E77: Too many file names"));
#ifdef FEAT_EVAL
EXTERN char e_undefined_variable_str[]