diff options
| author | Lars Ingebrigtsen | 2014-02-08 03:06:33 -0800 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2014-02-08 03:06:33 -0800 |
| commit | b772a699edb4cb915fa01395a905de4b18ab1845 (patch) | |
| tree | 463e1bd1eb561684e5c18001b85bae94753ced91 | |
| parent | c8740fa21b0ff2aeedbcf02e961c53b10f25dcc0 (diff) | |
| download | emacs-b772a699edb4cb915fa01395a905de4b18ab1845.tar.gz emacs-b772a699edb4cb915fa01395a905de4b18ab1845.zip | |
* find-dired.el (find-name-dired): Doc fix.
Fixes: debbugs:14290
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/find-dired.el | 6 |
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 @@ | |||
| 1 | 2014-02-08 Lars Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * find-dired.el (find-name-dired): Doc fix (bug#14290). | ||
| 4 | |||
| 1 | 2014-02-08 Juri Linkov <juri@jurta.org> | 5 | 2014-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, |
| 237 | and run dired on those files. | 237 | and run dired on those files. |
| 238 | PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted. | 238 | PATTERN is a shell wildcard (not an Emacs regexp) and need not be quoted. |
| 239 | The command run (after changing into DIR) is | 239 | The default command run (after changing into DIR) is |
| 240 | |||
| 241 | find . -name 'PATTERN' -ls | ||
| 240 | 242 | ||
| 241 | find . -name 'PATTERN' -ls" | 243 | See `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)))) |