wok diff emacs/stuff/site-start.el @ rev 19175

Fill category 'localization'
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Jun 03 01:02:47 2016 +0300 (2016-06-03)
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 Jun 03 01:02:47 2016 +0300
     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)))))