Merge flim-1_10_4.
[elisp/flim.git] / FLIM-ELS
1 ;;; -*-Emacs-Lisp-*-
2
3 ;; FLIM-ELS: list of FLIM modules to install
4
5 ;;; Code:
6
7 (setq flim-modules '(std11
8                      mime-def
9                      mel mel-b mel-q mel-u mel-g
10                      eword-decode eword-encode
11                      mime mime-parse mmbuffer mmcooked
12                      mailcap))
13
14 (if (fboundp 'dynamic-link)
15     (setq flim-modules (cons 'mel-b-dl flim-modules))
16   )
17
18 (if (and (featurep 'mule)
19          (not (or (and (boundp 'MULE) MULE)
20                   (and (featurep 'xemacs) (< emacs-major-version 21))
21                   )))
22     (setq flim-modules (cons 'mel-ccl flim-modules))
23   )
24
25 ;;; FLIM-ELS ends here