From a5e85e32d9dbbf8b1dddbe15c01a5b1436a7c505 Mon Sep 17 00:00:00 2001 From: morioka Date: Mon, 12 Oct 1998 07:56:44 +0000 Subject: [PATCH] (mel-ccl-module): Require path-util when the running emacs has MULE. --- mel.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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")) -- 1.7.10.4