diff options
| author | Eli Zaretskii | 2016-03-06 19:36:57 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2016-03-06 19:36:57 +0200 |
| commit | 993b2fbb70c03882862f520a54b63c08a6e4e921 (patch) | |
| tree | fd2c9f068593ebfac1c95e8526c5f37f48c63992 | |
| parent | b71c717f952d57995c54a2d276b10af87529dcd3 (diff) | |
| download | emacs-993b2fbb70c03882862f520a54b63c08a6e4e921.tar.gz emacs-993b2fbb70c03882862f520a54b63c08a6e4e921.zip | |
Improve doc string of 'shell-command'
* lisp/simple.el (shell-command): Mention that COMMAND is prompted
for. (Bug#22926)
| -rw-r--r-- | lisp/simple.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 0b04b80cb67..84a1919bc01 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -3195,6 +3195,8 @@ shell (with its need to quote arguments)." | |||
| 3195 | "Execute string COMMAND in inferior shell; display output, if any. | 3195 | "Execute string COMMAND in inferior shell; display output, if any. |
| 3196 | With prefix argument, insert the COMMAND's output at point. | 3196 | With prefix argument, insert the COMMAND's output at point. |
| 3197 | 3197 | ||
| 3198 | Interactively, prompt for COMMAND in the minibuffer. | ||
| 3199 | |||
| 3198 | If COMMAND ends in `&', execute it asynchronously. | 3200 | If COMMAND ends in `&', execute it asynchronously. |
| 3199 | The output appears in the buffer `*Async Shell Command*'. | 3201 | The output appears in the buffer `*Async Shell Command*'. |
| 3200 | That buffer is in shell mode. You can also use | 3202 | That buffer is in shell mode. You can also use |