From 8711cc7731336188fbbe32253b79404b66ea5145 Mon Sep 17 00:00:00 2001 From: morioka Date: Wed, 30 Apr 1997 13:15:12 +0000 Subject: [PATCH] (base64-encode-region, base64-decode-region): Documentation was modified. --- README.en | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) 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) -- 1.7.10.4