comparison src/fns.c @ 23556:82fdd7048bcf

(Fbase64_decode_region, Fbase64_encode_region): Fix newline in doc string.
author Dave Love <fx@gnu.org>
date Tue, 27 Oct 1998 10:39:24 +0000
parents 0154f51c56d8
children 1a67e5327a04
comparison
equal deleted inserted replaced
23555:7417378e7cce 23556:82fdd7048bcf
2805 static int base64_decode_1 P_ ((const char *, char *, int)); 2805 static int base64_decode_1 P_ ((const char *, char *, int));
2806 2806
2807 DEFUN ("base64-encode-region", Fbase64_encode_region, Sbase64_encode_region, 2807 DEFUN ("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\
2810 Return the length of the encoded text. 2810 Return the length of the encoded text.\n\
2811 Optional third argument NO-LINE-BREAK means do not break long lines\n\ 2811 Optional third argument NO-LINE-BREAK means do not break long lines\n\
2812 into shorter lines.") 2812 into shorter lines.")
2813 (beg, end, no_line_break) 2813 (beg, end, no_line_break)
2814 Lisp_Object beg, end, no_line_break; 2814 Lisp_Object beg, end, no_line_break;
2815 { 2815 {
2955 2955
2956 2956
2957 DEFUN ("base64-decode-region", Fbase64_decode_region, Sbase64_decode_region, 2957 DEFUN ("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\
2960 Return the length of the decoded text. 2960 Return the length of the decoded text.\n\
2961 If the region can't be decoded, return nil and don't modify the buffer.") 2961 If 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;
2964 { 2964 {
2965 int ibeg, iend, length; 2965 int ibeg, iend, length;