From: Lars Ingebrigtsen Date: Sat, 8 Feb 2014 11:06:33 +0000 (-0800) Subject: * find-dired.el (find-name-dired): Doc fix. X-Git-Url: http://git.hcoop.net/bpt/emacs.git/commitdiff_plain/b772a699edb4cb915fa01395a905de4b18ab1845 * find-dired.el (find-name-dired): Doc fix. Fixes: debbugs:14290 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 25c88c4899..f811867437 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2014-02-08 Lars Ingebrigtsen + + * find-dired.el (find-name-dired): Doc fix (bug#14290). + 2014-02-08 Juri Linkov * isearch.el (isearch-quote-char): Check character validity diff --git a/lisp/find-dired.el b/lisp/find-dired.el index d90ab4f3eb..2741db5cc6 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))))