MEL 7.1 (not released). mel-7_1-current
authormorioka <morioka>
Sun, 11 Jan 1998 17:25:39 +0000 (17:25 +0000)
committermorioka <morioka>
Sun, 11 Jan 1998 17:25:39 +0000 (17:25 +0000)
ftp.in [new file with mode: 0644]
mel-g.el
mel-q.el
mel.el

diff --git a/ftp.in b/ftp.in
new file mode 100644 (file)
index 0000000..abe48da
--- /dev/null
+++ b/ftp.in
@@ -0,0 +1,24 @@
+--<<alternative>>-{
+
+  It is available from
+
+    ftp://ftp.jaist.ac.jp/pub/GNU/elisp/mime/libs/     (Japan)
+
+or its mirrors
+
+    ftp://ftp.nis.co.jp/pub/gnu/emacs-lisp/tm/libs/    (Japan)
+    ftp://ftp.nisiq.net/pub/gnu/emacs-lisp/tm/libs/    (US)
+    ftp://ftp.miranova.com/pub/mime/jaist.ac.jp/libs/  (US)
+    ftp://ftp.unicamp.br/pub/mail/mime/tm/libs/                (Brazil)
+
+--[[message/external-body;
+       access-type=anon-ftp;
+       site="ftp.jaist.ac.jp";
+       directory="/pub/GNU/elisp/mime/libs";
+       name="mel-VERSION.tar.gz";
+       mode=image]]
+Content-Type: application/octet-stream;
+       name="mel-VERSION.tar.gz";
+       type=tar;
+       conversions=gzip
+--}-<<alternative>>
index 8f25b53..4a6714c 100644 (file)
--- a/mel-g.el
+++ b/mel-g.el
@@ -7,7 +7,7 @@
 ;;     modified by MORIOKA Tomohiko <morioka@jaist.ac.jp>
 ;; Maintainer: Shuhei KOBAYASHI <shuhei-k@jaist.ac.jp>
 ;; Created: 1995/10/25
-;; Version: $Id: mel-g.el,v 6.2 1997/09/20 15:09:36 shuhei-k Exp $
+;; Version: $Id: mel-g.el,v 7.1 1997/11/06 16:08:20 morioka Exp $
 ;; Keywords: Gzip64, base64, gzip, MIME
 
 ;; This file is part of MEL (MIME Encoding Library).
@@ -35,7 +35,7 @@
 ;;; Code:
 
 (require 'emu)
-(require 'file-detect)
+(require 'path-util)
 
 
 ;;; @ variables
index ed3e9e8..72a2276 100644 (file)
--- a/mel-q.el
+++ b/mel-q.el
@@ -4,7 +4,7 @@
 
 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
 ;; Created: 1995/6/25
-;; Version: $Id: mel-q.el,v 6.14 1997/07/13 04:17:34 morioka Exp $
+;; Version: $Id: mel-q.el,v 7.1 1997/11/06 16:09:25 morioka Exp $
 ;; Keywords: MIME, Quoted-Printable, Q-encoding
 
 ;; This file is part of MEL (MIME Encoding Library).
 (defvar quoted-printable-internal-encoding-limit
   (if (and (featurep 'xemacs)(featurep 'mule))
       0
-    (require 'file-detect)
+    (require 'path-util)
     (if (exec-installed-p "mmencode")
        1000
       (message "Don't found external encoder for Quoted-Printable!")
diff --git a/mel.el b/mel.el
index 41a91c7..ac397a2 100644 (file)
--- a/mel.el
+++ b/mel.el
@@ -5,7 +5,7 @@
 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
 ;; modified by Shuhei KOBAYASHI <shuhei-k@jaist.ac.jp>
 ;; Created: 1995/6/25
-;; Version: $Id: mel.el,v 6.11 1997/09/20 15:11:26 shuhei-k Exp $
+;; Version: $Id: mel.el,v 7.1 1997/11/06 16:17:11 morioka Exp $
 ;; Keywords: MIME, Base64, Quoted-Printable, uuencode, gzip64
 
 ;; This file is part of MEL (MIME Encoding Library).
@@ -88,7 +88,10 @@ FUNCTION is region decoder.")
 
 ;;;###autoload
 (defun mime-encode-region (start end encoding)
-  "Encode region START to END of current buffer using ENCODING."
+  "Encode region START to END of current buffer using ENCODING.
+ENCODING must be string.  If ENCODING is found in
+`mime-encoding-method-alist' as its key, this function encodes the
+region by its value."
   (interactive
    (list (region-beginning) (region-end)
         (completing-read "encoding: "
@@ -102,7 +105,10 @@ FUNCTION is region decoder.")
 
 ;;;###autoload
 (defun mime-decode-region (start end encoding)
-  "Decode region START to END of current buffer using ENCODING."
+  "Decode region START to END of current buffer using ENCODING.
+ENCODING must be string.  If ENCODING is found in
+`mime-decoding-method-alist' as its key, this function decodes the
+region by its value."
   (interactive
    (list (region-beginning) (region-end)
         (completing-read "encoding: "