patch 9.1.0229: Error E877 is not translated Commit: https://github.com/vim/vim/commit/b64cec217f3434a089a5677d265bfbc21367e98b Author: Christian Brabandt <c...@256bit.org> Date: Sun Mar 31 17:52:56 2024 +0200
patch 9.1.0229: Error E877 is not translated 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 <c...@256bit.org> diff --git a/src/errors.h b/src/errors.h index 18d3f0cb6..00f7df07c 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 diff --git a/src/regexp_nfa.c b/src/regexp_nfa.c index 359ce5b51..5e4fadd02 100644 --- a/src/regexp_nfa.c +++ b/src/regexp_nfa.c @@ -5150,7 +5150,7 @@ check_char_class(int class, int c) default: // should not be here :P - siemsg(e_nfa_regexp_invalid_character_class_nr, class); + siemsg(_(e_nfa_regexp_invalid_character_class_nr), class); return FAIL; } return FAIL; diff --git a/src/version.c b/src/version.c index 2a996a142..017ccdbbe 100644 --- a/src/version.c +++ b/src/version.c @@ -704,6 +704,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 229, /**/ 228, /**/ -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to vim_dev+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/vim_dev/E1rqxbJ-000Eqo-74%40256bit.org.