Header fix.
[elisp/apel.git] / APEL-ELS
index 46a44cc..4b931c2 100644 (file)
--- a/APEL-ELS
+++ b/APEL-ELS
@@ -1,11 +1,23 @@
 ;;; -*-Emacs-Lisp-*-
-;;;
-;;; $Id: APEL-ELS,v 1.9 1998-04-24 19:12:39 morioka Exp $
-;;;
-
-(setq apel-modules '(alist calist atype
-                          path-util filename install
-                          mule-caesar
-                          file-detect))
+
+;; APEL-ELS: list of APEL modules to install
+
+;;; Code:
+
+(setq apel-modules '(product apel-ver
+                            alist calist
+                            path-util filename install
+                            mule-caesar
+                            
+                            ;; [obsoleted modules] If you would like to
+                            ;; install following, please activate them.
+
+                            ;; atype file-detect
+                            ))
+
+(if (or (< emacs-major-version 19)
+       (and (eq emacs-major-version 19) (< emacs-minor-version 16)))
+    (setq apel-modules (cons 'time-stamp apel-modules))
+  )
 
 ;;; APEL-ELS ends here