]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.849 v7.3.849
authorBram Moolenaar <Bram@vim.org>
Thu, 7 Mar 2013 15:08:35 +0000 (16:08 +0100)
committerBram Moolenaar <Bram@vim.org>
Thu, 7 Mar 2013 15:08:35 +0000 (16:08 +0100)
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)

src/ex_cmds.c
src/version.c

index 656b1f49d1d734b981bf65b9313e32483b908927..c7135a3d7b742e0ac69d0b497d181f6c3703cded 100644 (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);
index c6ce9c2a98c561a81cd6b4d4a7a3daf65ea7e61e..9b90b51e64b4dd3fcf957216b6e650acdb6f724c 100644 (file)
@@ -728,6 +728,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    849,
 /**/
     848,
 /**/