c03f302505
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/emacs#1cedb9402777fa85d9d893044b18a02ace83e089
10 lines
294 B
EmacsLisp
10 lines
294 B
EmacsLisp
;;; loaded before user's ".emacs" file and default.el
|
|
|
|
;; 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?\\'"))))
|