[README for MEL (English Version)]
by MORIOKA Tomohiko <morioka@jaist.ac.jp>
-$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
===========
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)