diff options
| author | Yuuki Harano | 2021-11-13 16:25:48 +0900 |
|---|---|---|
| committer | Yuuki Harano | 2021-11-13 16:25:48 +0900 |
| commit | c31d3dacf7f153589b6e7a5f5204937c64e7fd24 (patch) | |
| tree | b898c1d298e0d149faef0e9a6d641ce212df4e7e /src/coding.c | |
| parent | c3377ae3b7fdb8714e03586589d1b2804cf08e17 (diff) | |
| parent | b4c6ab8cb67be4d5b3e0041981968c6cce4afe89 (diff) | |
| download | emacs-c31d3dacf7f153589b6e7a5f5204937c64e7fd24.tar.gz emacs-c31d3dacf7f153589b6e7a5f5204937c64e7fd24.zip | |
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs into feature/pgtk
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/coding.c b/src/coding.c index 7030a53869a..02dccf5bdb0 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -9455,11 +9455,12 @@ code_convert_region (Lisp_Object start, Lisp_Object end, | |||
| 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 from the specified coding system. |
| 9458 | Interactively, prompt for the coding system to decode the region. | ||
| 9458 | 9459 | ||
| 9459 | What's meant by \"decoding\" is transforming bytes into text | 9460 | \"Decoding\" means transforming bytes into readable text (characters). |
| 9460 | (characters). If, for instance, you have a region that contains data | 9461 | If, for instance, you have a region that contains data that represents |
| 9461 | that represents the two bytes #xc2 #xa9, after calling this function | 9462 | the two bytes #xc2 #xa9, after calling this function with the utf-8 |
| 9462 | with the utf-8 coding system, the region will contain the single | 9463 | coding system, the region will contain the single |
| 9463 | character ?\\N{COPYRIGHT SIGN}. | 9464 | character ?\\N{COPYRIGHT SIGN}. |
| 9464 | 9465 | ||
| 9465 | When called from a program, takes four arguments: | 9466 | When called from a program, takes four arguments: |