* find-dired.el (find-name-dired): Doc fix.
authorLars Ingebrigtsen <larsi@gnus.org>
Sat, 8 Feb 2014 11:06:33 +0000 (03:06 -0800)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 8 Feb 2014 11:06:33 +0000 (03:06 -0800)
Fixes: debbugs:14290

lisp/ChangeLog
lisp/find-dired.el

index 25c88c4..f811867 100644 (file)
@@ -1,3 +1,7 @@
+2014-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
+
+       * find-dired.el (find-name-dired): Doc fix (bug#14290).
+
 2014-02-08  Juri Linkov  <juri@jurta.org>
 
        * isearch.el (isearch-quote-char): Check character validity
index d90ab4f..2741db5 100644 (file)
@@ -236,9 +236,11 @@ use in place of \"-ls\" as the final argument."
   "Search DIR recursively for files matching the globbing pattern PATTERN,
 and run dired on those files.
 PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted.
-The command run (after changing into DIR) is
+The default command run (after changing into DIR) is
+
+    find . -name 'PATTERN' -ls
 
-    find . -name 'PATTERN' -ls"
+See `find-name-arg' to customize the arguments."
   (interactive
    "DFind-name (directory): \nsFind-name (filename wildcard): ")
   (find-dired dir (concat find-name-arg " " (shell-quote-argument pattern))))