diff options
| author | Dave Love | 1998-10-27 10:39:24 +0000 |
|---|---|---|
| committer | Dave Love | 1998-10-27 10:39:24 +0000 |
| commit | 15a9a50c39003356a2d5ee8b341b39d83fbf7bf4 (patch) | |
| tree | cfd330436f3b86cd2e68efa310924f4898276970 | |
| parent | f6ecdae5b2e17db16ce8a384ce326f8b1cd3836b (diff) | |
| download | emacs-15a9a50c39003356a2d5ee8b341b39d83fbf7bf4.tar.gz emacs-15a9a50c39003356a2d5ee8b341b39d83fbf7bf4.zip | |
(Fbase64_decode_region, Fbase64_encode_region): Fix
newline in doc string.
| -rw-r--r-- | src/fns.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -2807,7 +2807,7 @@ static int base64_decode_1 P_ ((const char *, char *, int)); | |||
| 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) |
| @@ -2957,7 +2957,7 @@ base64_encode_1 (from, to, length, line_break) | |||
| 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; |