Provide some markup shortcuts for the <include> tag.
[muse-el.git] / debian / emacsen-startup
blob86547f14c67aa9d2228ef5000e4a8eaf992337f5
1 ;; -*-emacs-lisp-*-
2 ;;
3 ;; Emacs startup file for the Debian GNU/Linux muse package
4 ;;
5 ;; Originally contributed by Nils Naumann <naumann@unileoben.ac.at>
6 ;; Modified by Dirk Eddelbuettel <edd@debian.org>
7 ;; Adapted for dh-make by Jim Van Zandt <jrv@vanzandt.mv.com>
8 ;; Adapted for Muse by Michael Olson <mwolson@gnu.org>
10 ;; The muse package follows the Debian/GNU Linux 'emacsen' policy and
11 ;; byte-compiles its elisp files for each 'emacs flavor' (emacs19,
12 ;; xemacs19, emacs20, xemacs20...).  The compiled code is then
13 ;; installed in a subdirectory of the respective site-lisp directory.
14 ;; We have to add this to the load-path:
16 ;; Add the source file
17 (when (fboundp 'debian-pkg-add-load-path-item)
18   (let ((prefix (concat "/usr/share/"
19                         (symbol-name flavor)
20                         "/site-lisp/muse-el")))
21     (debian-pkg-add-load-path-item prefix)
22     (debian-pkg-add-load-path-item (concat prefix "/contrib"))))
24 (load "muse-autoloads.el")