diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-09-08 10:00:48 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-09-08 10:00:48 +0000 |
commit | 881a4deeb9385acf24340cd2deada9571c248a33 (patch) | |
tree | 573c39ddb62d2ae875229f2a3e7211411e048610 /src | |
parent | a70d5c38a29fad7e7e1ae2e51e9daf1ca040b3a3 (diff) | |
download | emacs-881a4deeb9385acf24340cd2deada9571c248a33.tar.gz |
(Fencode_coding_string, Fdecode_coding_string): Doc fixes.
Diffstat (limited to 'src')
-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.") 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 @@ of decoding.") 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; { |