- Don't require `poe'.
authortomo <tomo>
Fri, 15 Dec 2000 09:58:09 +0000 (09:58 +0000)
committertomo <tomo>
Fri, 15 Dec 2000 09:58:09 +0000 (09:58 +0000)
- Require mcs-20 if XEmacs-Mule, Emacs 20.1 or later are running.

mime/mcharset.el

index d1550ab..05babb4 100644 (file)
 
 ;;; Code:
 
-(require 'poe)
-(require 'pcustom)
+(require 'custom)
 
 (cond ((featurep 'mule)
-       (cond ((featurep 'xemacs)
-             (require 'mcs-xm)
-             )
-            ((>= emacs-major-version 20)
-             (require 'mcs-e20)
-             )
-            (t
-             ;; for MULE 1.* and 2.*
-             (require 'mcs-om)
-             ))
-       )
+       (if (>= emacs-major-version 20)
+          (require 'mcs-20)
+        ;; for MULE 1.* and 2.*
+        (require 'mcs-om)))
       ((boundp 'NEMACS)
        ;; for Nemacs and Nepoch
-       (require 'mcs-nemacs)
-       )
+       (require 'mcs-nemacs))
       (t
-       (require 'mcs-ltn1)
-       ))
+       (require 'mcs-ltn1)))
 
 (defcustom default-mime-charset-for-write
   (if (and (fboundp 'find-coding-system)