From: teranisi Date: Thu, 30 Aug 2001 04:07:49 +0000 (+0000) Subject: * wl-acap.el (toplevel): Added checking for UTF-2000. X-Git-Tag: wl-2_7_4~55 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=0c17837f60e68bf38b42749aeb97f50ae65c11ea;p=elisp%2Fwanderlust.git * wl-acap.el (toplevel): Added checking for UTF-2000. --- diff --git a/wl/ChangeLog b/wl/ChangeLog index a53f5a9..9200996 100644 --- a/wl/ChangeLog +++ b/wl/ChangeLog @@ -1,7 +1,8 @@ 2001-08-30 Yuuichi Teranishi * wl-acap.el (toplevel): Check and require 'un-define before - 'xemacs-ucs. + 'xemacs-ucs; + Added checking for UTF-2000. 2001-08-29 Yuuichi Teranishi diff --git a/wl/wl-acap.el b/wl/wl-acap.el index a85aa45..34cb102 100644 --- a/wl/wl-acap.el +++ b/wl/wl-acap.el @@ -29,9 +29,11 @@ ;; (cond - ((module-installed-p 'un-define) + ((and (not (featurep 'utf-2000)) + (module-installed-p 'un-define)) (require 'un-define)) ((and (featurep 'xemacs) + (not (featurep 'utf-2000)) (module-installed-p 'xemacs-ucs)) (require 'xemacs-ucs))) (require 'custom)