wok-next diff 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 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/emacs/stuff/site-start.el Fri Apr 10 06:59:54 2020 +0100 1.3 @@ -0,0 +1,12 @@ 1.4 +;; site-start.el for SliTaz -*- no-byte-compile: t -*- 1.5 +;; 1.6 +;; (C) GNU gpl v3 - SliTaz GNU/Linux 2009. 1.7 +;; 1.8 +;; Default site startup file for Emacs. You may modify this file, replace it by 1.9 +;; your own site initialisation, or even remove it completely. 1.10 +;; 1.11 +;; Load package startups in this site-start.d folder 1.12 +(if (file-accessible-directory-p "/usr/share/emacs/site-lisp/site-start.d") 1.13 + (let ((dir (directory-files "/usr/share/emacs/site-lisp/site-start.d/" t 1.14 + ".\\.el$"))) 1.15 + (while dir (load (car dir) nil t t) (setq dir (cdr dir)))))