From 6735de899c312cadf00a812c038882be505d411f Mon Sep 17 00:00:00 2001 From: yamaoka Date: Tue, 25 Apr 2000 00:09:07 +0000 Subject: [PATCH] (emu-modules): Don't include `pccl-20' for XEmacs 20 and earlier. --- ChangeLog | 5 +++++ EMU-ELS | 14 +++++++++----- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9903d10..49a6c51 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-04-25 Katsumi Yamaoka + + * EMU-ELS (emu-modules): Don't include `pccl-20' for XEmacs 20 and + earlier. + 2000-03-25 Mikio Nakajima * pym.el: Define edebug specs for `static-if', `static-when', diff --git a/EMU-ELS b/EMU-ELS index 677ebfc..43ddc3b 100644 --- a/EMU-ELS +++ b/EMU-ELS @@ -50,20 +50,24 @@ ;; pccl modules; pccl modules depend on broken. (cond - ((featurep 'mule) + ((featurep 'xemacs) (cond ;; XEmacs 21 w/ mule. - ((and (featurep 'xemacs) + ((and (featurep 'mule) (>= emacs-major-version 21)) '(pccl-20 pccl)) + (t + '(pccl)))) + ((featurep 'mule) + (cond ;; Emacs 20. ((>= emacs-major-version 20) '(pccl-20 pccl)) + ;; Mule 1.* and 2.*. (t - ;; Mule 1.* and 2.*. '(pccl-om pccl)))) - (t - '(pccl))) + (t + '(pccl))) ;; pces modules; pces modules depend on poe. (cond -- 1.7.10.4