|--==> "KY" == Katsumi Yamaoka <yamaoka(a)jpl.org> writes:
KY> Hi,
KY> I noticed that there is at least one problem in:
KY>
ftp://ftp.xemacs.org/packages/apel-1.21-pkg.tar.gz
KY> The file pccl.elc is compiled for XEmacs with MULE and it
KY> requires the feature `ccl'. Non-MULE XEmacs users should never
KY> use this.
Seams to me that changing:
(unless ccl-usable
(require 'ccl)
(require 'advice)
...)
To:
(unless ccl-usable
(if (featurep 'mule)
(progn
(require 'ccl)
(require 'advice)
...)))
In pccl.el would take care of that. Am I wrong?
--
|---<Steve Youngs>---------------<GnuPG KeyID: 10D5C9C5>---|
| XEmacs - It's not just an editor. |
| It's a way of life. |
|------------------------------------<youngs(a)xemacs.org>---|