]> git.pld-linux.org Git - packages/emacs.git/commitdiff
- thrown out useless entries
authorjaphy <japhy@pld-linux.org>
Sun, 23 May 2004 22:10:52 +0000 (22:10 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- auto-load all files in site-lisp/site-start.d/ (to let subpackages
  do autoloading)

Changed files:
    emacs-site-start.el -> 1.2

emacs-site-start.el

index 8061b0324268d920eb634ffcce4c607ac5e717f4..3504ed2917c25123e0b81f9a4769ff727259c977 100644 (file)
@@ -1,9 +1,7 @@
-;; Aspell is a replacement for ispell
-(setq-default ispell-program-name "aspell") 
+;; Load all files from @SITE_START_DIR@
 
-;; Add python support
-(setq auto-mode-alist
-      (cons '("\\.py$" . python-mode) auto-mode-alist))
-(setq interpreter-mode-alist
-      (cons '("python" . python-mode)
-            interpreter-mode-alist))
+(dolist 
+    (the-file
+     (directory-files "@SITE_START_DIR@"
+                      t "^[^.].*\.elc?$"))
+  (load the-file nil t t))
This page took 0.046899 seconds and 4 git commands to generate.