Header fix.
[elisp/apel.git] / APEL-ELS
1 ;;; -*-Emacs-Lisp-*-
2
3 ;; APEL-ELS: list of APEL modules to install
4
5 ;;; Code:
6
7 (setq apel-modules '(product apel-ver
8                              alist calist
9                              path-util filename install
10                              mule-caesar
11                              
12                              ;; [obsoleted modules] If you would like to
13                              ;; install following, please activate them.
14
15                              ;; atype file-detect
16                              ))
17
18 (if (or (< emacs-major-version 19)
19         (and (eq emacs-major-version 19) (< emacs-minor-version 16)))
20     (setq apel-modules (cons 'time-stamp apel-modules))
21   )
22
23 ;;; APEL-ELS ends here