diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index b1539bbe04e807be39bd6ca5bf7a77e0de248eda..6a98ddfd1070c68cf3a84d3a68c859342d357005 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -1,4 +1,4 @@
-*options.txt*	For Vim version 7.3e.  Last change: 2010 Aug 04
+*options.txt*	For Vim version 7.3e.  Last change: 2010 Aug 08
 
 
 		  VIM REFERENCE MANUAL	  by Bram Moolenaar
@@ -6887,8 +6887,11 @@ A jump table for the options with a short description can be found at |Q_op|.
 	'cpoptions'.  Environment variables are expanded |:set_env|.  Also see
 	|tags-option|.
 	"*", "**" and other wildcards can be used to search for tags files in
-	a directory tree.  See |file-searching|.  {not available when compiled
-	without the |+path_extra| feature}
+	a directory tree.  See |file-searching|.  E.g., "/lib/**/tags" will
+	find all files named "tags" below "/lib".  The filename itself cannot
+	contain wildcards, it is used as-is.  E.g., "/lib/**/tags?" will find
+	files called "tags?".  {not available when compiled without the
+	|+path_extra| feature}
 	The |tagfiles()| function can be used to get a list of the file names
 	actually used.
 	If Vim was compiled with the |+emacs_tags| feature, Emacs-style tag
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index ae8ef69456b923e55bf9161c98c547add18c9467..937f5c8267f9f954a46da31a986670abb3a4b0b9 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -35,9 +35,6 @@ Before release 7.3:
 
 Bug: E685 error for func_unref(). (ZyX, 2010 Aug 5)
 
-When directory "/tmp/tags" contains "tags1" and "tags2", setting 'tags' to
-"/tmp/tags/*" doesn't pick up these files.  (Simon Ruggier, 2010 Mar 17)
-
 ":command Print echo 'print'" works, but ":Print" doesn't.  Builtin Print
 should be overruled. (Aaron Thoma)
 
diff --git a/src/misc2.c b/src/misc2.c
index 6f19bb61a3cc0576c2fe33adb9099d7c995e55c5..1cf198ff02fec07486189fc7616a873ec26eab75 100644
--- a/src/misc2.c
+++ b/src/misc2.c
@@ -4248,7 +4248,7 @@ vim_findnext()
 #endif
 
 /*
- * Initialization routine for vim_findfile.
+ * Initialization routine for vim_findfile().
  *
  * Returns the newly allocated search context or NULL if an error occurred.
  *