aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/coding.c b/src/coding.c
index 02dccf5bdb0..f8004d202e5 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -9454,8 +9454,9 @@ code_convert_region (Lisp_Object start, Lisp_Object end,
9454 9454
9455DEFUN ("decode-coding-region", Fdecode_coding_region, Sdecode_coding_region, 9455DEFUN ("decode-coding-region", Fdecode_coding_region, Sdecode_coding_region,
9456 3, 4, "r\nzCoding system: ", 9456 3, 4, "r\nzCoding system: ",
9457 doc: /* Decode the current region from the specified coding system. 9457 doc: /* Decode the current region using the specified coding system.
9458Interactively, prompt for the coding system to decode the region. 9458Interactively, prompt for the coding system to decode the region, and
9459replace the region with the decoded text.
9459 9460
9460\"Decoding\" means transforming bytes into readable text (characters). 9461\"Decoding\" means transforming bytes into readable text (characters).
9461If, for instance, you have a region that contains data that represents 9462If, for instance, you have a region that contains data that represents
@@ -9485,7 +9486,9 @@ not fully specified.) */)
9485 9486
9486DEFUN ("encode-coding-region", Fencode_coding_region, Sencode_coding_region, 9487DEFUN ("encode-coding-region", Fencode_coding_region, Sencode_coding_region,
9487 3, 4, "r\nzCoding system: ", 9488 3, 4, "r\nzCoding system: ",
9488 doc: /* Encode the current region by specified coding system. 9489 doc: /* Encode the current region using th specified coding system.
9490Interactively, prompt for the coding system to encode the region, and
9491replace the region with the bytes that are the result of the encoding.
9489 9492
9490What's meant by \"encoding\" is transforming textual data (characters) 9493What's meant by \"encoding\" is transforming textual data (characters)
9491into bytes. If, for instance, you have a region that contains the 9494into bytes. If, for instance, you have a region that contains the