rearrangement.
[elisp/apel.git] / EMU-ELS
1 ;;; -*-Emacs-Lisp-*-
2 ;;;
3 ;;; $Id: EMU-ELS,v 1.2 1997-03-14 07:17:34 morioka Exp $
4 ;;;
5
6 (setq emu-modules
7       (cons
8        'emu
9        (if (or running-emacs-19_29-or-later
10                running-xemacs-19_14-or-later)
11            '(richtext)
12          '(tinyrich)
13          )))
14
15 (setq emu-modules
16       (nconc
17        (cond (running-mule-merged-emacs
18               '(emu-e20)
19               )
20              (running-xemacs-with-mule
21               '(emu-x20)
22               )
23              ((boundp 'MULE)
24               '(emu-mule)
25               )
26              ((boundp 'NEMACS)
27               '(emu-nemacs)
28               )
29              (t
30               '(emu-e19)
31               ))
32        emu-modules))
33
34 (setq emu-modules
35       (nconc
36        (cond (running-emacs-18
37               '(emu-18 env)
38               )
39              (running-xemacs
40               '(emu-xemacs)
41               )
42              (t
43               '(emu-19)
44               )
45              )
46        emu-modules))
47
48 ;;; EMU-ELS ends here