Fix bug #11208 with inaccurate doc string of shell-command-on-region.

lisp/simple.el (shell-command-on-region): Doc fix.
This commit is contained in:
Eli Zaretskii 2012-04-09 19:56:35 +03:00
parent 4c6fe6c009
commit 9f847f4172
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2012-04-09 Eli Zaretskii <eliz@gnu.org>
* simple.el (shell-command-on-region): Doc fix. (Bug#11208)
2012-04-09 Glenn Morris <rgm@gnu.org>
* calendar/holidays.el (calendar-check-holidays): Doc fix.

View file

@ -2464,9 +2464,9 @@ COMMAND.
To specify a coding system for converting non-ASCII characters
in the input and output to the shell command, use \\[universal-coding-system-argument]
before this command. By default, the input (from the current buffer)
is encoded in the same coding system that will be used to save the file,
`buffer-file-coding-system'. If the output is going to replace the region,
then it is decoded from that same coding system.
is encoded using coding-system specified by `process-coding-system-alist',
falling back to `default-process-coding-system' if no match for COMMAND
is found in `process-coding-system-alist'.
The noninteractive arguments are START, END, COMMAND,
OUTPUT-BUFFER, REPLACE, ERROR-BUFFER, and DISPLAY-ERROR-BUFFER.