2004-09-09 04:37:38 +00:00
|
|
|
;;; loaded before user's ".emacs" file and default.el
|
|
|
|
|
2011-03-15 19:56:39 +00:00
|
|
|
;; load *.el and *.elc in /usr/share/emacs/site-lisp/site-start.d on startup
|
|
|
|
(mapc
|
|
|
|
'load
|
|
|
|
(delete-dups
|
|
|
|
(mapcar 'file-name-sans-extension
|
|
|
|
(directory-files
|
|
|
|
"/usr/share/emacs/site-lisp/site-start.d" t "\\.elc?\\'"))))
|