diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-03-07 16:08:35 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-03-07 16:08:35 +0100 |
commit | c389fd3a49c01674960fe2153af2f6e42b316c61 (patch) | |
tree | be920570504d74ae78401cfacae1e7b81f5ba7f6 /src/ex_cmds.c | |
parent | db3fbe5228025b7f87702e74cfbbb5acf01c7c39 (diff) | |
download | vim-git-c389fd3a49c01674960fe2153af2f6e42b316c61.tar.gz |
updated for version 7.3.849v7.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)
Diffstat (limited to 'src/ex_cmds.c')
-rw-r--r-- | src/ex_cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c index 656b1f49d..c7135a3d7 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -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); |