mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
updated for version 7.3.849
Problem: ":g//" gives "Pattern not found error" with E486. Should not use the error number, it's not a regular error message. Solution: Use a normal message. (David Bürgin)
This commit is contained in:
@@ -5411,7 +5411,7 @@ ex_global(eap)
|
|||||||
if (type == 'v')
|
if (type == 'v')
|
||||||
smsg((char_u *)_("Pattern found in every line: %s"), pat);
|
smsg((char_u *)_("Pattern found in every line: %s"), pat);
|
||||||
else
|
else
|
||||||
smsg((char_u *)_(e_patnotf2), pat);
|
smsg((char_u *)_("Pattern not found: %s"), pat);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
global_exe(cmd);
|
global_exe(cmd);
|
||||||
|
@@ -728,6 +728,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
849,
|
||||||
/**/
|
/**/
|
||||||
848,
|
848,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user