From: morioka Date: Wed, 30 Apr 1997 13:15:12 +0000 (+0000) Subject: (base64-encode-region, base64-decode-region): Documentation was X-Git-Tag: XEmacs-20_3-b27-viet~4 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=8711cc7731336188fbbe32253b79404b66ea5145;p=elisp%2Fflim.git (base64-encode-region, base64-decode-region): Documentation was modified. --- diff --git a/README.en b/README.en index 8b4cfb5..c425b06 100644 --- a/README.en +++ b/README.en @@ -1,6 +1,6 @@ [README for MEL (English Version)] by MORIOKA Tomohiko -$Id: README.en,v 1.3 1997-04-30 12:59:46 morioka Exp $ +$Id: README.en,v 1.4 1997-04-30 13:15:12 morioka Exp $ What's MEL =========== @@ -96,11 +96,25 @@ Command mime-decode-region (start end encoding) Command base64-encode-region (start end) - Encode region START to END of current buffer using base64. + Encode current region by base64. + START and END are buffer positions. + + This function calls internal base64 encoder if size of region is + smaller than `base64-internal-encoding-limit', otherwise it calls + external base64 encoder specified by `base64-external-encoder'. In + this case, you must install the program (maybe mmencode included in + metamail or XEmacs package). Command base64-decode-region (start end) - Decode region START to END of current buffer using base64. + Decode current region by base64. + START and END are buffer positions. + + This function calls internal base64 decoder if size of region is + smaller than `base64-internal-decoding-limit', otherwise it calls + external base64 decoder specified by `base64-external-decoder'. In + this case, you must install the program (maybe mmencode included in + metamail or XEmacs package). Command quoted-printable-encode-region (start end)