;;; Code:
(require 'mime-def)
-(require 'path-util)
(defcustom mime-encoding-list
'("7bit" "8bit" "binary" "base64" "quoted-printable")
(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"))