0
0
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:
Bram Moolenaar
2013-03-07 16:08:35 +01:00
parent db3fbe5228
commit c389fd3a49
2 changed files with 3 additions and 1 deletions

View File

@@ -5411,7 +5411,7 @@ ex_global(eap)
if (type == 'v')
smsg((char_u *)_("Pattern found in every line: %s"), pat);
else
smsg((char_u *)_(e_patnotf2), pat);
smsg((char_u *)_("Pattern not found: %s"), pat);
}
else
global_exe(cmd);

View File

@@ -728,6 +728,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
849,
/**/
848,
/**/