aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2014-02-08 03:06:33 -0800
committerLars Ingebrigtsen2014-02-08 03:06:33 -0800
commitb772a699edb4cb915fa01395a905de4b18ab1845 (patch)
tree463e1bd1eb561684e5c18001b85bae94753ced91
parentc8740fa21b0ff2aeedbcf02e961c53b10f25dcc0 (diff)
downloademacs-b772a699edb4cb915fa01395a905de4b18ab1845.tar.gz
emacs-b772a699edb4cb915fa01395a905de4b18ab1845.zip
* find-dired.el (find-name-dired): Doc fix.
Fixes: debbugs:14290
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/find-dired.el6
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 25c88c48996..f811867437c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12014-02-08 Lars Ingebrigtsen <larsi@gnus.org>
2
3 * find-dired.el (find-name-dired): Doc fix (bug#14290).
4
12014-02-08 Juri Linkov <juri@jurta.org> 52014-02-08 Juri Linkov <juri@jurta.org>
2 6
3 * isearch.el (isearch-quote-char): Check character validity 7 * 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."
236 "Search DIR recursively for files matching the globbing pattern PATTERN, 236 "Search DIR recursively for files matching the globbing pattern PATTERN,
237and run dired on those files. 237and run dired on those files.
238PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted. 238PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted.
239The command run (after changing into DIR) is 239The default command run (after changing into DIR) is
240
241 find . -name 'PATTERN' -ls
240 242
241 find . -name 'PATTERN' -ls" 243See `find-name-arg' to customize the arguments."
242 (interactive 244 (interactive
243 "DFind-name (directory): \nsFind-name (filename wildcard): ") 245 "DFind-name (directory): \nsFind-name (filename wildcard): ")
244 (find-dired dir (concat find-name-arg " " (shell-quote-argument pattern)))) 246 (find-dired dir (concat find-name-arg " " (shell-quote-argument pattern))))