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