summaryrefslogtreecommitdiffstats
path: root/src/ex_cmds.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-03-07 16:08:35 +0100
committerBram Moolenaar <Bram@vim.org>2013-03-07 16:08:35 +0100
commitc389fd3a49c01674960fe2153af2f6e42b316c61 (patch)
treebe920570504d74ae78401cfacae1e7b81f5ba7f6 /src/ex_cmds.c
parentdb3fbe5228025b7f87702e74cfbbb5acf01c7c39 (diff)
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index 656b1f49d1..c7135a3d7b 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);