aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love1998-10-27 10:39:24 +0000
committerDave Love1998-10-27 10:39:24 +0000
commit15a9a50c39003356a2d5ee8b341b39d83fbf7bf4 (patch)
treecfd330436f3b86cd2e68efa310924f4898276970 /src
parentf6ecdae5b2e17db16ce8a384ce326f8b1cd3836b (diff)
downloademacs-15a9a50c39003356a2d5ee8b341b39d83fbf7bf4.tar.gz
emacs-15a9a50c39003356a2d5ee8b341b39d83fbf7bf4.zip
(Fbase64_decode_region, Fbase64_encode_region): Fix
newline in doc string.
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;