diff -r ad7bbe9ea65b runtime/doc/todo.txt
--- a/runtime/doc/todo.txt	Tue Feb 26 22:54:11 2013 +0100
+++ b/runtime/doc/todo.txt	Tue Mar 05 16:04:02 2013 +0100
@@ -2284,8 +2284,6 @@
     the :catch commands are always executed, also when the file is edited
     normally.  Should reset did_emsg and undo side effects.  Also make sure
     the ATTENTION message shows up.  Servatius Brandt works on this.
-8   ":g//" gives "Pattern not found error" with E486.  Should not use the
-    error number, it's not a regular error message.
 7   Vimtutor leaves escape sequence in terminal. This is the xterm response to
     requesting the version number.  (Yasuhiro Matsumoto)
 8   When redirecting and using ":silent" the current column for displaying and
diff -r ad7bbe9ea65b src/ex_cmds.c
--- a/src/ex_cmds.c	Tue Feb 26 22:54:11 2013 +0100
+++ b/src/ex_cmds.c	Tue Mar 05 16:04:02 2013 +0100
@@ -5411,7 +5411,7 @@
 	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);
