aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1998-10-27 17:55:28 +0000
committerRichard M. Stallman1998-10-27 17:55:28 +0000
commit46ac5b268d1703cd33ae433d92ea6b2ebcee62e8 (patch)
treec6a07fd0192b88c9b26fcc3473cfffd2795087f2 /src
parent15a9a50c39003356a2d5ee8b341b39d83fbf7bf4 (diff)
downloademacs-46ac5b268d1703cd33ae433d92ea6b2ebcee62e8.tar.gz
emacs-46ac5b268d1703cd33ae433d92ea6b2ebcee62e8.zip
(Fbase64_decode_string): Doc fix.
(Fbase64_decode_region, Fbase64_encode_string Fbase64_encode_region): Likewise.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c8
1 files 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));
2806 2806
2807DEFUN ("base64-encode-region", Fbase64_encode_region, Sbase64_encode_region, 2807DEFUN ("base64-encode-region", Fbase64_encode_region, Sbase64_encode_region,
2808 2, 3, "r", 2808 2, 3, "r",
2809 "base64 encode the region between BEG and END.\n\ 2809 "Base64-encode the region between BEG and END.\n\
2810Return the length of the encoded text.\n\ 2810Return the length of the encoded text.\n\
2811Optional third argument NO-LINE-BREAK means do not break long lines\n\ 2811Optional third argument NO-LINE-BREAK means do not break long lines\n\
2812into shorter lines.") 2812into shorter lines.")
@@ -2857,7 +2857,7 @@ into shorter lines.")
2857 2857
2858DEFUN ("base64-encode-string", Fbase64_encode_string, Sbase64_encode_string, 2858DEFUN ("base64-encode-string", Fbase64_encode_string, Sbase64_encode_string,
2859 1, 1, 0, 2859 1, 1, 0,
2860 "base64 encode STRING and return the result.") 2860 "Base64-encode STRING and return the result.")
2861 (string) 2861 (string)
2862 Lisp_Object string; 2862 Lisp_Object string;
2863{ 2863{
@@ -2956,7 +2956,7 @@ base64_encode_1 (from, to, length, line_break)
2956 2956
2957DEFUN ("base64-decode-region", Fbase64_decode_region, Sbase64_decode_region, 2957DEFUN ("base64-decode-region", Fbase64_decode_region, Sbase64_decode_region,
2958 2, 2, "r", 2958 2, 2, "r",
2959 "base64 decode the region between BEG and END.\n\ 2959 "Base64-decode the region between BEG and END.\n\
2960Return the length of the decoded text.\n\ 2960Return the length of the decoded text.\n\
2961If the region can't be decoded, return nil and don't modify the buffer.") 2961If the region can't be decoded, return nil and don't modify the buffer.")
2962 (beg, end) 2962 (beg, end)
@@ -3014,7 +3014,7 @@ If the region can't be decoded, return nil and don't modify the buffer.")
3014 3014
3015DEFUN ("base64-decode-string", Fbase64_decode_string, Sbase64_decode_string, 3015DEFUN ("base64-decode-string", Fbase64_decode_string, Sbase64_decode_string,
3016 1, 1, 0, 3016 1, 1, 0,
3017 "base64 decode STRING and return the result.") 3017 "Base64-decode STRING and return the result.")
3018 (string) 3018 (string)
3019 Lisp_Object string; 3019 Lisp_Object string;
3020{ 3020{