diff options
| author | Richard M. Stallman | 1997-09-08 10:00:48 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-09-08 10:00:48 +0000 |
| commit | fe487a71280026a7ca47b6bf425aae4c67889a76 (patch) | |
| tree | 83bf5bd3377c331f73ce4d132f91442600961228 /src/coding.c | |
| parent | 3304a6c4520f8ecb1f8aac2e4d784fc6bb188b65 (diff) | |
| download | emacs-fe487a71280026a7ca47b6bf425aae4c67889a76.tar.gz emacs-fe487a71280026a7ca47b6bf425aae4c67889a76.zip | |
(Fencode_coding_string, Fdecode_coding_string): Doc fixes.
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/coding.c b/src/coding.c index 9487261b78d..378f5d5de0a 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -3546,8 +3546,8 @@ Return length of encoded text.") | |||
| 3546 | DEFUN ("decode-coding-string", Fdecode_coding_string, Sdecode_coding_string, | 3546 | DEFUN ("decode-coding-string", Fdecode_coding_string, Sdecode_coding_string, |
| 3547 | 2, 3, 0, | 3547 | 2, 3, 0, |
| 3548 | "Decode STRING which is encoded in CODING-SYSTEM, and return the result.\n\ | 3548 | "Decode STRING which is encoded in CODING-SYSTEM, and return the result.\n\ |
| 3549 | Optional arg NOCOPY non-nil means return STRING itself if there's no need\n\ | 3549 | Optional arg NOCOPY non-nil means it is ok to return STRING itself\n\ |
| 3550 | of decoding.") | 3550 | if the decoding operation is trivial.") |
| 3551 | (string, coding_system, nocopy) | 3551 | (string, coding_system, nocopy) |
| 3552 | Lisp_Object string, coding_system, nocopy; | 3552 | Lisp_Object string, coding_system, nocopy; |
| 3553 | { | 3553 | { |
| @@ -3567,8 +3567,8 @@ of decoding.") | |||
| 3567 | DEFUN ("encode-coding-string", Fencode_coding_string, Sencode_coding_string, | 3567 | DEFUN ("encode-coding-string", Fencode_coding_string, Sencode_coding_string, |
| 3568 | 2, 3, 0, | 3568 | 2, 3, 0, |
| 3569 | "Encode STRING to CODING-SYSTEM, and return the result.\n\ | 3569 | "Encode STRING to CODING-SYSTEM, and return the result.\n\ |
| 3570 | Optional arg NOCOPY non-nil means return STRING itself if there's no need\n\ | 3570 | Optional arg NOCOPY non-nil means it is ok to return STRING itself\n\ |
| 3571 | of encoding.") | 3571 | if the encoding operation is trivial.") |
| 3572 | (string, coding_system, nocopy) | 3572 | (string, coding_system, nocopy) |
| 3573 | Lisp_Object string, coding_system, nocopy; | 3573 | Lisp_Object string, coding_system, nocopy; |
| 3574 | { | 3574 | { |