diff options
| author | Glenn Morris | 2012-01-10 21:37:31 -0500 |
|---|---|---|
| committer | Glenn Morris | 2012-01-10 21:37:31 -0500 |
| commit | 090446227fc1de9a69449cda72bbf541c32a7f86 (patch) | |
| tree | 6e524fe5daa148a79e19c718edd980574ce35262 | |
| parent | e52c37fad057b29d68c51cf3a70b2e0d94f656cb (diff) | |
| download | emacs-090446227fc1de9a69449cda72bbf541c32a7f86.tar.gz emacs-090446227fc1de9a69449cda72bbf541c32a7f86.zip | |
* lisp/dired-aux.el (dired-do-shell-command): Doc fix.
(Inspired by the Emacs manual.)
| -rw-r--r-- | lisp/ChangeLog | 1 | ||||
| -rw-r--r-- | lisp/dired-aux.el | 7 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7cdb5217c14..fedbe71d516 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | 2012-01-11 Glenn Morris <rgm@gnu.org> | 1 | 2012-01-11 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561) | 3 | * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561) |
| 4 | Doc fix. | ||
| 4 | 5 | ||
| 5 | 2012-01-10 Chong Yidong <cyd@gnu.org> | 6 | 2012-01-10 Chong Yidong <cyd@gnu.org> |
| 6 | 7 | ||
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el index 19ed74b2078..2d05be312eb 100644 --- a/lisp/dired-aux.el +++ b/lisp/dired-aux.el | |||
| @@ -576,8 +576,11 @@ file name added at the end of COMMAND (separated by a space). | |||
| 576 | 576 | ||
| 577 | `*' and `?' when not surrounded by whitespace have no special | 577 | `*' and `?' when not surrounded by whitespace have no special |
| 578 | significance for `dired-do-shell-command', and are passed through | 578 | significance for `dired-do-shell-command', and are passed through |
| 579 | normally to the shell, but you must confirm first. To pass `*' by | 579 | normally to the shell, but you must confirm first. |
| 580 | itself to the shell as a wildcard, type `*\"\"'. | 580 | |
| 581 | If you want to use `*' as a shell wildcard with whitespace around | ||
| 582 | it, write `*\"\"' in place of just `*'. This is equivalent to just | ||
| 583 | `*' in the shell, but avoids Dired's special handling. | ||
| 581 | 584 | ||
| 582 | If COMMAND produces output, it goes to a separate buffer. | 585 | If COMMAND produces output, it goes to a separate buffer. |
| 583 | 586 | ||