(mel-ccl-module): Require path-util when the running emacs has MULE.
authormorioka <morioka>
Mon, 12 Oct 1998 07:56:44 +0000 (07:56 +0000)
committermorioka <morioka>
Mon, 12 Oct 1998 07:56:44 +0000 (07:56 +0000)
mel.el

diff --git a/mel.el b/mel.el
index ae04782..bd4ea11 100644 (file)
--- a/mel.el
+++ b/mel.el
@@ -26,7 +26,6 @@
 ;;; Code:
 
 (require 'mime-def)
-(require 'path-util)
 
 (defcustom mime-encoding-list
   '("7bit" "8bit" "binary" "base64" "quoted-printable")
@@ -81,7 +80,10 @@ Content-Transfer-Encoding for it."
 
 (defvar mel-ccl-module
   (and (featurep 'mule)
-       (module-installed-p 'mel-ccl)))
+       (progn
+        (require 'path-util)
+        (module-installed-p 'mel-ccl)
+        )))
 
 (mel-use-module 'mel-b '("base64" "B"))
 (mel-use-module 'mel-q '("quoted-printable" "Q"))