diff options
| author | Eli Zaretskii | 2008-10-21 15:57:30 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2008-10-21 15:57:30 +0000 |
| commit | 1560f91a925c564191cecb2ac3c95f5025c415cf (patch) | |
| tree | cf500154cf44af7f1c85897309fcecfa1ca12647 /src | |
| parent | d2c52e26902c4510e9087dbf4b11603f5c5d3898 (diff) | |
| download | emacs-1560f91a925c564191cecb2ac3c95f5025c415cf.tar.gz emacs-1560f91a925c564191cecb2ac3c95f5025c415cf.zip | |
(Fencode_coding_region, Fdecode_coding_region)
(Fdecode_coding_string, Fencode_coding_string): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/coding.c | 14 |
2 files changed, 13 insertions, 6 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index ed825a8e954..0a11f86292c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2008-10-21 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * coding.c (Fencode_coding_region, Fdecode_coding_region) | ||
| 4 | (Fdecode_coding_string, Fencode_coding_string): Doc fix. | ||
| 5 | |||
| 1 | 2008-10-21 Martin Rudalics <rudalics@gmx.at> | 6 | 2008-10-21 Martin Rudalics <rudalics@gmx.at> |
| 2 | 7 | ||
| 3 | * buffer.c (Fget_buffer, Fbury_buffer, switch_to_buffer_1): | 8 | * buffer.c (Fget_buffer, Fbury_buffer, switch_to_buffer_1): |
diff --git a/src/coding.c b/src/coding.c index fb0bfa0b15c..ea0a066eb71 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -8442,7 +8442,8 @@ START and END are buffer positions. | |||
| 8442 | 8442 | ||
| 8443 | Optional 4th arguments DESTINATION specifies where the decoded text goes. | 8443 | Optional 4th arguments DESTINATION specifies where the decoded text goes. |
| 8444 | If nil, the region between START and END is replaced by the decoded text. | 8444 | If nil, the region between START and END is replaced by the decoded text. |
| 8445 | If buffer, the decoded text is inserted in the buffer. | 8445 | If buffer, the decoded text is inserted in that buffer after point (point |
| 8446 | does not move). | ||
| 8446 | In those cases, the length of the decoded text is returned. | 8447 | In those cases, the length of the decoded text is returned. |
| 8447 | If DESTINATION is t, the decoded text is returned. | 8448 | If DESTINATION is t, the decoded text is returned. |
| 8448 | 8449 | ||
| @@ -8464,7 +8465,8 @@ START and END are buffer positions. | |||
| 8464 | 8465 | ||
| 8465 | Optional 4th arguments DESTINATION specifies where the encoded text goes. | 8466 | Optional 4th arguments DESTINATION specifies where the encoded text goes. |
| 8466 | If nil, the region between START and END is replace by the encoded text. | 8467 | If nil, the region between START and END is replace by the encoded text. |
| 8467 | If buffer, the encoded text is inserted in the buffer. | 8468 | If buffer, the encoded text is inserted in that buffer after point (point |
| 8469 | does not move). | ||
| 8468 | In those cases, the length of the encoded text is returned. | 8470 | In those cases, the length of the encoded text is returned. |
| 8469 | If DESTINATION is t, the encoded text is returned. | 8471 | If DESTINATION is t, the encoded text is returned. |
| 8470 | 8472 | ||
| @@ -8544,8 +8546,8 @@ Optional third arg NOCOPY non-nil means it is OK to return STRING itself | |||
| 8544 | if the decoding operation is trivial. | 8546 | if the decoding operation is trivial. |
| 8545 | 8547 | ||
| 8546 | Optional fourth arg BUFFER non-nil means that the decoded text is | 8548 | Optional fourth arg BUFFER non-nil means that the decoded text is |
| 8547 | inserted in BUFFER instead of returned as a string. In this case, | 8549 | inserted in that buffer after point (point does not move). In this |
| 8548 | the return value is the length of the decoded text. | 8550 | case, the return value is the length of the decoded text. |
| 8549 | 8551 | ||
| 8550 | This function sets `last-coding-system-used' to the precise coding system | 8552 | This function sets `last-coding-system-used' to the precise coding system |
| 8551 | used (which may be different from CODING-SYSTEM if CODING-SYSTEM is | 8553 | used (which may be different from CODING-SYSTEM if CODING-SYSTEM is |
| @@ -8565,8 +8567,8 @@ Optional third arg NOCOPY non-nil means it is OK to return STRING | |||
| 8565 | itself if the encoding operation is trivial. | 8567 | itself if the encoding operation is trivial. |
| 8566 | 8568 | ||
| 8567 | Optional fourth arg BUFFER non-nil means that the encoded text is | 8569 | Optional fourth arg BUFFER non-nil means that the encoded text is |
| 8568 | inserted in BUFFER instead of returned as a string. In this case, | 8570 | inserted in that buffer after point (point does not move). In this |
| 8569 | the return value is the length of the encoded text. | 8571 | case, the return value is the length of the encoded text. |
| 8570 | 8572 | ||
| 8571 | This function sets `last-coding-system-used' to the precise coding system | 8573 | This function sets `last-coding-system-used' to the precise coding system |
| 8572 | used (which may be different from CODING-SYSTEM if CODING-SYSTEM is | 8574 | used (which may be different from CODING-SYSTEM if CODING-SYSTEM is |