* FLIM-ELS: require 'pccl.
authorakr <akr>
Thu, 12 Nov 1998 04:10:04 +0000 (04:10 +0000)
committerakr <akr>
Thu, 12 Nov 1998 04:10:04 +0000 (04:10 +0000)
(flim-modules): Check CCL availability by broken facility.

ChangeLog
FLIM-ELS

index 7bba930..9065118 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1998-11-10  Tanaka Akira  <akr@jaist.ac.jp>
+
+       * FLIM-ELS: require 'pccl.
+       (flim-modules): Check CCL availability by broken facility.
+
 1998-11-08  MORIOKA Tomohiko  <morioka@jaist.ac.jp>
 
        * eword-decode.el (eword-decode-structured-field-body): New
index c778f88..44fdc70 100644 (file)
--- a/FLIM-ELS
+++ b/FLIM-ELS
   (setq flim-modules (cons 'mel-b-el flim-modules))
   )
 
-(if (and (featurep 'mule)
-        (not (or (and (boundp 'MULE) MULE)
-                 (and (featurep 'xemacs) (< emacs-major-version 21))
-                 )))
-    (setq flim-modules (cons 'mel-b-ccl (cons 'mel-q-ccl flim-modules)))
-  )
+(require 'pccl)
+(unless-broken ccl-usable
+  (setq flim-modules (cons 'mel-b-ccl (cons 'mel-q-ccl flim-modules))))
 
 ;;; FLIM-ELS ends here