blob: 24eb58bc55348d61b6e643e1656ce43eadd32e58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
diff -urN EMU-ELS.orig EMU-ELS
--- EMU-ELS.orig Thu Jan 13 07:06:35 2000
+++ EMU-ELS Tue Apr 25 09:03:54 2000
@@ -50,20 +50,24 @@
;; pccl modules; pccl modules depend on broken.
(cond
- ((featurep 'mule)
+ ((featurep 'xemacs)
(cond
;; XEmacs 21 w/ mule.
- ((and (featurep 'xemacs)
+ ((and (featurep 'mule)
(>= emacs-major-version 21))
'(pccl-20 pccl))
+ (t
+ '(pccl))))
+ ((featurep 'mule)
+ (cond
;; Emacs 20.
((>= emacs-major-version 20)
'(pccl-20 pccl))
+ ;; Mule 1.* and 2.*.
(t
- ;; Mule 1.* and 2.*.
'(pccl-om pccl))))
- (t
- '(pccl)))
+ (t
+ '(pccl)))
;; pces modules; pces modules depend on poe.
(cond
|