# HG changeset patch # User Richard M. Stallman # Date 873712848 0 # Node ID e68cab4f1f705cca51afac26efc86a40c1d4935e # Parent 24d0221b94bcdff42d27a3b66390e4d2e45bdeab (Fencode_coding_string, Fdecode_coding_string): Doc fixes. diff -r 24d0221b94bc -r e68cab4f1f70 src/coding.c --- a/src/coding.c Mon Sep 08 09:59:29 1997 +0000 +++ b/src/coding.c Mon Sep 08 10:00:48 1997 +0000 @@ -3546,8 +3546,8 @@ DEFUN ("decode-coding-string", Fdecode_coding_string, Sdecode_coding_string, 2, 3, 0, "Decode STRING which is encoded in CODING-SYSTEM, and return the result.\n\ -Optional arg NOCOPY non-nil means return STRING itself if there's no need\n\ -of decoding.") +Optional arg NOCOPY non-nil means it is ok to return STRING itself\n\ +if the decoding operation is trivial.") (string, coding_system, nocopy) Lisp_Object string, coding_system, nocopy; { @@ -3567,8 +3567,8 @@ DEFUN ("encode-coding-string", Fencode_coding_string, Sencode_coding_string, 2, 3, 0, "Encode STRING to CODING-SYSTEM, and return the result.\n\ -Optional arg NOCOPY non-nil means return STRING itself if there's no need\n\ -of encoding.") +Optional arg NOCOPY non-nil means it is ok to return STRING itself\n\ +if the encoding operation is trivial.") (string, coding_system, nocopy) Lisp_Object string, coding_system, nocopy; {