From: yamaoka Date: Tue, 21 Sep 1999 01:54:08 +0000 (+0000) Subject: Require `pces-xfc' if the feature `mule' is provided even though the feature X-Git-Tag: of-tm-8_7~18 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=81735eece1a10b31048b7bee89df32d5f9d64172;p=elisp%2Fapel.git Require `pces-xfc' if the feature `mule' is provided even though the feature `file-coding' is not provided. --- diff --git a/pces.el b/pces.el index f5c4b21..dc21f16 100644 --- a/pces.el +++ b/pces.el @@ -30,10 +30,10 @@ (unless (fboundp 'open-network-stream) (require 'tcp))) -(cond ((and (featurep 'xemacs) - (featurep 'file-coding)) - (require 'pces-xfc) - ) +(cond ((featurep 'xemacs) + (if (or (featurep 'mule) (featurep 'file-coding)) + (require 'pces-xfc) + )) ((featurep 'mule) (if (>= emacs-major-version 20) (require 'pces-e20)