From: Lars Ingebrigtsen Date: Sat, 8 Feb 2014 11:06:33 +0000 (-0800) Subject: * find-dired.el (find-name-dired): Doc fix. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~94 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b772a699edb4cb915fa01395a905de4b18ab1845;p=emacs.git * find-dired.el (find-name-dired): Doc fix. Fixes: debbugs:14290 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 25c88c48996..f811867437c 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 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))))