summaryrefslogtreecommitdiffstats
path: root/src/errors.h
diff options
context:
space:
mode:
authorChristian Brabandt <cb@256bit.org>2024-03-31 17:52:56 +0200
committerChristian Brabandt <cb@256bit.org>2024-03-31 17:56:17 +0200
commitb64cec217f3434a089a5677d265bfbc21367e98b (patch)
tree86e1e5dae6837fe58fd2e7be9e1fe370bdfcd01c /src/errors.h
parent4fa06bb179965fc48a381312f5c80a8d93f2d362 (diff)
patch 9.1.0229: Error E877 is not translatedv9.1.0229
Problem: Error E877 is not translated (RestorerZ) Solution: Declare the error with N_ to mark it as translatable, add _() around the error message in regexp_nfa.c fixes: #14333 Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'src/errors.h')
-rw-r--r--src/errors.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/errors.h b/src/errors.h
index 18d3f0cb61..00f7df07c3 100644
--- a/src/errors.h
+++ b/src/errors.h
@@ -2268,7 +2268,7 @@ EXTERN char e_nfa_regexp_while_converting_from_postfix_to_nfa_too_many_stats_lef
EXTERN char e_nfa_regexp_not_enough_space_to_store_whole_nfa[]
INIT(= N_("E876: (NFA regexp) Not enough space to store the whole NFA"));
EXTERN char e_nfa_regexp_invalid_character_class_nr[]
- INIT(= "E877: (NFA regexp) Invalid character class: %d");
+ INIT(= N_("E877: (NFA regexp) Invalid character class: %d"));
EXTERN char e_nfa_regexp_could_not_allocate_memory_for_branch_traversal[]
INIT(= N_("E878: (NFA regexp) Could not allocate memory for branch traversal!"));
#ifdef FEAT_SYN_HL