wok-next annotate emacs/stuff/site-start.el @ rev 21350
updated exosip (5.1.0 -> 5.1.1)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Apr 10 06:59:54 2020 +0100 (2020-04-10) |
parents | |
children |
rev | line source |
---|---|
llevrel@18794 | 1 ;; site-start.el for SliTaz -*- no-byte-compile: t -*- |
llevrel@18794 | 2 ;; |
llevrel@18794 | 3 ;; (C) GNU gpl v3 - SliTaz GNU/Linux 2009. |
llevrel@18794 | 4 ;; |
llevrel@18794 | 5 ;; Default site startup file for Emacs. You may modify this file, replace it by |
llevrel@18794 | 6 ;; your own site initialisation, or even remove it completely. |
llevrel@18794 | 7 ;; |
llevrel@18794 | 8 ;; Load package startups in this site-start.d folder |
llevrel@18794 | 9 (if (file-accessible-directory-p "/usr/share/emacs/site-lisp/site-start.d") |
llevrel@18794 | 10 (let ((dir (directory-files "/usr/share/emacs/site-lisp/site-start.d/" t |
llevrel@18794 | 11 ".\\.el$"))) |
llevrel@18794 | 12 (while dir (load (car dir) nil t t) (setq dir (cdr dir))))) |