Mercurial > emacs
changeset 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 | 7417378e7cce |
children | 1a67e5327a04 |
files | src/fns.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/fns.c Tue Oct 27 03:54:13 1998 +0000 +++ b/src/fns.c Tue Oct 27 10:39:24 1998 +0000 @@ -2807,7 +2807,7 @@ DEFUN ("base64-encode-region", Fbase64_encode_region, Sbase64_encode_region, 2, 3, "r", "base64 encode the region between BEG and END.\n\ -Return the length of the encoded text. +Return the length of the encoded text.\n\ Optional third argument NO-LINE-BREAK means do not break long lines\n\ into shorter lines.") (beg, end, no_line_break) @@ -2957,7 +2957,7 @@ DEFUN ("base64-decode-region", Fbase64_decode_region, Sbase64_decode_region, 2, 2, "r", "base64 decode the region between BEG and END.\n\ -Return the length of the decoded text. +Return the length of the decoded text.\n\ If the region can't be decoded, return nil and don't modify the buffer.") (beg, end) Lisp_Object beg, end;