diff options
| author | Alan Mackenzie | 2022-01-11 21:57:54 +0000 |
|---|---|---|
| committer | Alan Mackenzie | 2022-01-11 21:57:54 +0000 |
| commit | 2128cd8c08da84ab40608ac5db0fecfce733cfad (patch) | |
| tree | e295275b1a99aed2e5e0cc270f91614062c670f6 /src/coding.c | |
| parent | 4e77177b063f9da8a48709aa3ef416d0ac21837b (diff) | |
| parent | 18dac472553e6cd1102b644c2175012e12215c18 (diff) | |
| download | emacs-2128cd8c08da84ab40608ac5db0fecfce733cfad.tar.gz emacs-2128cd8c08da84ab40608ac5db0fecfce733cfad.zip | |
Merge branch 'master' into scratch/correct-warning-pos
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/coding.c b/src/coding.c index 02dccf5bdb0..df6c423caaa 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Coding system handler (conversion, detection, etc). | 1 | /* Coding system handler (conversion, detection, etc). |
| 2 | Copyright (C) 2001-2021 Free Software Foundation, Inc. | 2 | Copyright (C) 2001-2022 Free Software Foundation, Inc. |
| 3 | Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, | 3 | Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, |
| 4 | 2005, 2006, 2007, 2008, 2009, 2010, 2011 | 4 | 2005, 2006, 2007, 2008, 2009, 2010, 2011 |
| 5 | National Institute of Advanced Industrial Science and Technology (AIST) | 5 | National Institute of Advanced Industrial Science and Technology (AIST) |
| @@ -9454,8 +9454,9 @@ code_convert_region (Lisp_Object start, Lisp_Object end, | |||
| 9454 | 9454 | ||
| 9455 | DEFUN ("decode-coding-region", Fdecode_coding_region, Sdecode_coding_region, | 9455 | DEFUN ("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. |
| 9458 | Interactively, prompt for the coding system to decode the region. | 9458 | Interactively, prompt for the coding system to decode the region, and |
| 9459 | replace 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). |
| 9461 | If, for instance, you have a region that contains data that represents | 9462 | If, for instance, you have a region that contains data that represents |
| @@ -9485,7 +9486,9 @@ not fully specified.) */) | |||
| 9485 | 9486 | ||
| 9486 | DEFUN ("encode-coding-region", Fencode_coding_region, Sencode_coding_region, | 9487 | DEFUN ("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. |
| 9490 | Interactively, prompt for the coding system to encode the region, and | ||
| 9491 | replace the region with the bytes that are the result of the encoding. | ||
| 9489 | 9492 | ||
| 9490 | What's meant by \"encoding\" is transforming textual data (characters) | 9493 | What's meant by \"encoding\" is transforming textual data (characters) |
| 9491 | into bytes. If, for instance, you have a region that contains the | 9494 | into bytes. If, for instance, you have a region that contains the |