# HG changeset patch # User Richard M. Stallman # Date 909510928 0 # Node ID 1a67e5327a0445287dc867a1c1784531f88f5b93 # Parent 82fdd7048bcf3b77d1b6587f31ed29c3654db31e (Fbase64_decode_string): Doc fix. (Fbase64_decode_region, Fbase64_encode_string Fbase64_encode_region): Likewise. diff -r 82fdd7048bcf -r 1a67e5327a04 src/fns.c --- a/src/fns.c Tue Oct 27 10:39:24 1998 +0000 +++ b/src/fns.c Tue Oct 27 17:55:28 1998 +0000 @@ -2806,7 +2806,7 @@ DEFUN ("base64-encode-region", Fbase64_encode_region, Sbase64_encode_region, 2, 3, "r", - "base64 encode the region between BEG and END.\n\ + "Base64-encode the region between BEG and END.\n\ Return the length of the encoded text.\n\ Optional third argument NO-LINE-BREAK means do not break long lines\n\ into shorter lines.") @@ -2857,7 +2857,7 @@ DEFUN ("base64-encode-string", Fbase64_encode_string, Sbase64_encode_string, 1, 1, 0, - "base64 encode STRING and return the result.") + "Base64-encode STRING and return the result.") (string) Lisp_Object string; { @@ -2956,7 +2956,7 @@ DEFUN ("base64-decode-region", Fbase64_decode_region, Sbase64_decode_region, 2, 2, "r", - "base64 decode the region between BEG and END.\n\ + "Base64-decode the region between BEG and END.\n\ Return the length of the decoded text.\n\ If the region can't be decoded, return nil and don't modify the buffer.") (beg, end) @@ -3014,7 +3014,7 @@ DEFUN ("base64-decode-string", Fbase64_decode_string, Sbase64_decode_string, 1, 1, 0, - "base64 decode STRING and return the result.") + "Base64-decode STRING and return the result.") (string) Lisp_Object string; {