File: EPT-ELS

package info (click to toggle)
elpoint 0.2.0-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,820 kB
  • ctags: 121
  • sloc: lisp: 910; makefile: 66; sh: 34
file content (29 lines) | stat: -rw-r--r-- 729 bytes parent folder | download | duplicates (3)
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
;;; -*-Emacs-Lisp-*-

;; EPT-ELS: list of Elpoint modules to install

;;; Code:

(defvar ept-modules-to-compile
  '(ept ept-align ept-dump ept-mode ept-setup ept-kochi-x
    ept-solaris ept-outline))

(defvar ept-modules-not-to-compile '())

(mapcar (function
	 (lambda (cell)
	   (let ((c-module (car cell))
		 (i-modules (cdr cell)))
	     (if (module-installed-p c-module)
		 (setq ept-modules-to-compile
		       (nconc ept-modules-to-compile i-modules))
	       (setq elpt-modules-not-to-compile
		     (nconc ept-modules-not-to-compile i-modules))))))
	'((w3m		ept-w3m)
	  ;; Add modules with dependency here.
	  ))

(setq ept-modules (append ept-modules-to-compile
			  ept-modules-not-to-compile))

;;; EPT-ELS ends here