Patch 9.0.0885 (after 8.2.3967)
Problem: Informational message has an error message number.
Solution: Use a message without an error number. (closes #11530)
Files: src/insexpand.c
*** ../vim-9.0.0884/src/insexpand.c 2022-10-13 12:51:09.544145472 +0100
--- src/insexpand.c 2022-11-15 13:55:46.118161313 +0000
***************
*** 123,130 ****
# 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.
--- 123,128 ----
***************
*** 4910,4917 ****
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);
edit_submode_highl = HLF_E;
}
--- 4908,4915 ----
if (is_first_match(compl_first_match->cp_next))
{
edit_submode_extra = compl_status_adding() && compl_length > 1
! ? (char_u *)_("Hit end of paragraph")
! : (char_u *)_("Pattern not found");
edit_submode_highl = HLF_E;
}
*** ../vim-9.0.0884/src/version.c 2022-11-15 13:46:08.473979055 +0000
--- src/version.c 2022-11-15 13:54:50.778156818 +0000
***************
*** 697,698 ****
--- 697,700 ----
{ /* Add new patch number below this line */
+ /**/
+ 885,
/**/
--
UPS - Unknown Package Status
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
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 [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/20221115135849.3453D1C120E%40moolenaar.net.