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

syslinux/isohybrid.exe add -r support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 14 22:06:06 2016 +0100 (2016-02-14)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/emacs/stuff/site-start.el	Sun Feb 14 22:06:06 2016 +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)))))