diff options
| author | Kelly Dean | 2013-05-06 23:11:40 +0300 |
|---|---|---|
| committer | Juri Linkov | 2013-05-06 23:11:40 +0300 |
| commit | a1c700dec5a6b0db88d57087c5a7e43e30b1fc00 (patch) | |
| tree | 8af17815339107d09ee28a340a81c4178beaf7c2 | |
| parent | 323885fd82df508666a26527365b862239b9135d (diff) | |
| download | emacs-a1c700dec5a6b0db88d57087c5a7e43e30b1fc00.tar.gz emacs-a1c700dec5a6b0db88d57087c5a7e43e30b1fc00.zip | |
* lisp/simple.el (shell-command-on-region): Doc fix.
Fixes: debbugs:14279
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/simple.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 72036ac1a2e..2e5bc6063cd 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change) | ||
| 2 | |||
| 3 | * simple.el (shell-command-on-region): Doc fix. (Bug#14279) | ||
| 4 | |||
| 1 | 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2013-05-06 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * progmodes/perl-mode.el: Add support for here documents. | 7 | * progmodes/perl-mode.el: Add support for here documents. |
diff --git a/lisp/simple.el b/lisp/simple.el index 7ded4cbe58c..103c2a4636c 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -2868,7 +2868,7 @@ Command Output*' is deleted. | |||
| 2868 | 2868 | ||
| 2869 | Optional fourth arg OUTPUT-BUFFER specifies where to put the | 2869 | Optional fourth arg OUTPUT-BUFFER specifies where to put the |
| 2870 | command's output. If the value is a buffer or buffer name, put | 2870 | command's output. If the value is a buffer or buffer name, put |
| 2871 | the output there. Any other value, including nil, means to | 2871 | the output there. Any other value, excluding nil, means to |
| 2872 | insert the output in the current buffer. In either case, the | 2872 | insert the output in the current buffer. In either case, the |
| 2873 | output is inserted after point (leaving mark after it). | 2873 | output is inserted after point (leaving mark after it). |
| 2874 | 2874 | ||