aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKelly Dean2013-05-06 23:11:40 +0300
committerJuri Linkov2013-05-06 23:11:40 +0300
commita1c700dec5a6b0db88d57087c5a7e43e30b1fc00 (patch)
tree8af17815339107d09ee28a340a81c4178beaf7c2
parent323885fd82df508666a26527365b862239b9135d (diff)
downloademacs-a1c700dec5a6b0db88d57087c5a7e43e30b1fc00.tar.gz
emacs-a1c700dec5a6b0db88d57087c5a7e43e30b1fc00.zip
* lisp/simple.el (shell-command-on-region): Doc fix.
Fixes: debbugs:14279
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/simple.el2
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 @@
12013-05-06 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
2
3 * simple.el (shell-command-on-region): Doc fix. (Bug#14279)
4
12013-05-06 Stefan Monnier <monnier@iro.umontreal.ca> 52013-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
2869Optional fourth arg OUTPUT-BUFFER specifies where to put the 2869Optional fourth arg OUTPUT-BUFFER specifies where to put the
2870command's output. If the value is a buffer or buffer name, put 2870command's output. If the value is a buffer or buffer name, put
2871the output there. Any other value, including nil, means to 2871the output there. Any other value, excluding nil, means to
2872insert the output in the current buffer. In either case, the 2872insert the output in the current buffer. In either case, the
2873output is inserted after point (leaving mark after it). 2873output is inserted after point (leaving mark after it).
2874 2874