summaryrefslogtreecommitdiffstats
path: root/src/errors.h
diff options
context:
space:
mode:
authorerw7 <erw7.github@gmail.com>2021-12-07 21:29:20 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-07 21:29:20 +0000
commitf7f7aaf8aaad34a38d3f159e031c5bcf3394f8f1 (patch)
treeae3bccdefbc7cf24680259b8e92981f5037d3993 /src/errors.h
parent4dc24eb5adbcc76838fae1e900936dd230209d96 (diff)
patch 8.2.3757: an overlong highlight group name is silently truncatedv8.2.3757
Problem: An overlong highlight group name is silently truncated. Solution: Give an error if the name is too long. (closes #9289)
Diffstat (limited to 'src/errors.h')
-rw-r--r--src/errors.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/errors.h b/src/errors.h
index a494de3722..452ff451b3 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -756,3 +756,5 @@ EXTERN char e_line_number_out_of_range[]
INIT(= N_("E1247: Line number out of range"));
EXTERN char e_closure_called_from_invalid_context[]
INIT(= N_("E1248: Closure called from invalid context"));
+EXTERN char e_highlight_group_name_too_long[]
+ INIT(= N_("E1249: Highlight group name too long"));