From 9d00e4a8146862c17ed429dc6b1b43349acb2b5f Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 5 Jan 2022 17:49:15 +0000 Subject: patch 8.2.4010: error messages are spread out Problem: Error messages are spread out. Solution: Move more error messages to errors.h. --- src/highlight.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/highlight.c') diff --git a/src/highlight.c b/src/highlight.c index 484634bf93..fa329813d8 100644 --- a/src/highlight.c +++ b/src/highlight.c @@ -3466,7 +3466,7 @@ syn_add_group(char_u *name) if (highlight_ga.ga_len >= MAX_HL_ID) { - emsg(_("E849: Too many highlight and syntax groups")); + emsg(_(e_too_many_highlight_and_syntax_groups)); vim_free(name); return 0; } -- cgit v1.2.3