From 46ac5b268d1703cd33ae433d92ea6b2ebcee62e8 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 27 Oct 1998 17:55:28 +0000 Subject: [PATCH] (Fbase64_decode_string): Doc fix. (Fbase64_decode_region, Fbase64_encode_string Fbase64_encode_region): Likewise. --- src/fns.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/fns.c b/src/fns.c index 3c8649467c2..22c9ac41d1f 100644 --- a/src/fns.c +++ b/src/fns.c @@ -2806,7 +2806,7 @@ static int base64_decode_1 P_ ((const char *, char *, int)); 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 @@ into shorter lines.") 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 @@ base64_encode_1 (from, to, length, line_break) 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 @@ If the region can't be decoded, return nil and don't modify the buffer.") 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; { -- 2.39.2