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