changeset 31101:0d918ee84276 v9.0.0885

patch 9.0.0885: informational message has an error message number Commit: https://github.com/vim/vim/commit/b53a190e9f8a767bbd4be2f538649a09f9c8ba4b Author: Bram Moolenaar <Bram@vim.org> Date: Tue Nov 15 13:57:38 2022 +0000 patch 9.0.0885: informational message has an error message number Problem: Informational message has an error message number. Solution: Use a message without an error number. (closes https://github.com/vim/vim/issues/11530)
author Bram Moolenaar <Bram@vim.org>
date Tue, 15 Nov 2022 15:00:08 +0100
parents 5130e5024b28
children 71da2abdd899
files src/insexpand.c src/version.c
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/insexpand.c
+++ b/src/insexpand.c
@@ -123,8 +123,6 @@ struct compl_S
 # define CP_ICASE	    16	// ins_compl_equal() ignores case
 # define CP_FAST	    32	// use fast_breakcheck instead of ui_breakcheck
 
-static char e_hitend[] = N_("Hit end of paragraph");
-
 /*
  * All the current matches are stored in a list.
  * "compl_first_match" points to the start of the list.
@@ -4910,8 +4908,8 @@ ins_compl_show_statusmsg(void)
     if (is_first_match(compl_first_match->cp_next))
     {
 	edit_submode_extra = compl_status_adding() && compl_length > 1
-				? (char_u *)_(e_hitend)
-				: (char_u *)_(e_pattern_not_found);
+				? (char_u *)_("Hit end of paragraph")
+				: (char_u *)_("Pattern not found");
 	edit_submode_highl = HLF_E;
     }
 
--- a/src/version.c
+++ b/src/version.c
@@ -696,6 +696,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    885,
+/**/
     884,
 /**/
     883,