Mercurial > emacs
comparison src/coding.c @ 19815:e68cab4f1f70
(Fencode_coding_string, Fdecode_coding_string): Doc fixes.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Mon, 08 Sep 1997 10:00:48 +0000 |
| parents | ab2fd2c85986 |
| children | ea89a2408bfa |
comparison
equal
deleted
inserted
replaced
| 19814:24d0221b94bc | 19815:e68cab4f1f70 |
|---|---|
| 3544 } | 3544 } |
| 3545 | 3545 |
| 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 { |
| 3554 struct coding_system coding; | 3554 struct coding_system coding; |
| 3555 | 3555 |
| 3565 } | 3565 } |
| 3566 | 3566 |
| 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 { |
| 3575 struct coding_system coding; | 3575 struct coding_system coding; |
| 3576 | 3576 |
