1
0
mirror of git://projects.qi-hardware.com/xburst-tools.git synced 2024-11-23 16:19:21 +02:00
xburst-tools/flash-tool/debian/emacsen-startup.ex

26 lines
1.1 KiB
Elixir
Raw Normal View History

2009-06-22 18:06:58 +03:00
;; -*-emacs-lisp-*-
;;
;; Emacs startup file, e.g. /etc/emacs/site-start.d/50inflash.el
;; for the Debian inflash package
;;
;; Originally contributed by Nils Naumann <naumann@unileoben.ac.at>
;; Modified by Dirk Eddelbuettel <edd@debian.org>
;; Adapted for dh-make by Jim Van Zandt <jrv@debian.org>
;; The inflash package follows the Debian/GNU Linux 'emacsen' policy and
;; byte-compiles its elisp files for each 'emacs flavor' (emacs19,
;; xemacs19, emacs20, xemacs20...). The compiled code is then
;; installed in a subdirectory of the respective site-lisp directory.
;; We have to add this to the load-path:
(let ((package-dir (concat "/usr/share/"
(symbol-name flavor)
"/site-lisp/inflash")))
;; If package-dir does not exist, the inflash package must have
;; removed but not purged, and we should skip the setup.
(when (file-directory-p package-dir)
(setq load-path (cons package-dir load-path))
(autoload 'inflash-mode "inflash-mode"
"Major mode for editing inflash files." t)
(add-to-list 'auto-mode-alist '("\\.inflash$" . inflash-mode))))