aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fns.c b/src/fns.c
index df1e063db4a..3c8649467c2 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -2807,7 +2807,7 @@ static int base64_decode_1 P_ ((const char *, char *, int));
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. 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.")
2813 (beg, end, no_line_break) 2813 (beg, end, no_line_break)
@@ -2957,7 +2957,7 @@ base64_encode_1 (from, to, length, line_break)
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. 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)
2963 Lisp_Object beg, end; 2963 Lisp_Object beg, end;