wok-current view emacs/stuff/site-start.el @ rev 20930
updated fluidsynth again (1.1.3 -> 2.0.4)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Mar 02 13:46:27 2019 +0100 (2019-03-02) |
parents | |
children |
line source
1 ;; site-start.el for SliTaz -*- no-byte-compile: t -*-
2 ;;
3 ;; (C) GNU gpl v3 - SliTaz GNU/Linux 2009.
4 ;;
5 ;; Default site startup file for Emacs. You may modify this file, replace it by
6 ;; your own site initialisation, or even remove it completely.
7 ;;
8 ;; Load package startups in this site-start.d folder
9 (if (file-accessible-directory-p "/usr/share/emacs/site-lisp/site-start.d")
10 (let ((dir (directory-files "/usr/share/emacs/site-lisp/site-start.d/" t
11 ".\\.el$")))
12 (while dir (load (car dir) nil t t) (setq dir (cdr dir)))))