From: morioka Date: Mon, 12 Oct 1998 07:56:44 +0000 (+0000) Subject: (mel-ccl-module): Require path-util when the running emacs has MULE. X-Git-Tag: flim-1_10_4~3 X-Git-Url: http://git.chise.org/gitweb/?p=elisp%2Fflim.git;a=commitdiff_plain;h=a5e85e32d9dbbf8b1dddbe15c01a5b1436a7c505 (mel-ccl-module): Require path-util when the running emacs has MULE. --- diff --git a/mel.el b/mel.el index ae04782..bd4ea11 100644 --- 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"))