summaryrefslogtreecommitdiff
path: root/lisp/find-dired.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2014-02-08 03:06:33 -0800
committerLars Ingebrigtsen <larsi@gnus.org>2014-02-08 03:06:33 -0800
commitb772a699edb4cb915fa01395a905de4b18ab1845 (patch)
tree463e1bd1eb561684e5c18001b85bae94753ced91 /lisp/find-dired.el
parentc8740fa21b0ff2aeedbcf02e961c53b10f25dcc0 (diff)
downloademacs-b772a699edb4cb915fa01395a905de4b18ab1845.tar.gz
* find-dired.el (find-name-dired): Doc fix.
Fixes: debbugs:14290
Diffstat (limited to 'lisp/find-dired.el')
-rw-r--r--lisp/find-dired.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/find-dired.el b/lisp/find-dired.el
index d90ab4f3ebe..2741db5cc68 100644
--- a/lisp/find-dired.el
+++ b/lisp/find-dired.el
@@ -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))))