(file-executable-p): New function.
[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 '(alist calist
8                            path-util filename install
9                            mule-caesar
10
11                            ;; [obsoleted modules] If you would like to
12                            ;; install following, please activate them.
13
14                            ;; atype file-detect
15                            ))
16
17 (if (or (< emacs-major-version 19)
18         (and (eq emacs-major-version 19) (< emacs-minor-version 16)))
19     (setq apel-modules (cons 'time-stamp apel-modules))
20   )
21
22 ;;; APEL-ELS ends here