summaryrefslogtreecommitdiffstats
path: root/src/errors.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-12-05 13:02:50 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-05 13:02:50 +0000
commit5e18ccc60bdddc4aa39ab039f1a7c918f29e67ce (patch)
tree6c28c6d5d92597d7ec9b7ed42183cdedcd365a1f /src/errors.h
parentf589fd3e1047cdf90566b68aaf9a13389e54d26a (diff)
patch 8.2.3743: ":sign" can add a highlight group without a namev8.2.3743
Problem: ":sign" can add a highlight group without a name. Solution: Give an error if the group name is missing. (closes #9280)
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 96aef67fcb..e035f076d8 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -694,3 +694,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_group_name_missing_for_str[]
+ INIT(= N_("E1249: Group name missing for %s"));