From 81735eece1a10b31048b7bee89df32d5f9d64172 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Tue, 21 Sep 1999 01:54:08 +0000 Subject: [PATCH] Require `pces-xfc' if the feature `mule' is provided even though the feature `file-coding' is not provided. --- pces.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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) -- 1.7.10.4