emacsen-startup.ex 1.2 KB

12345678910111213141516171819202122232425262728
  1. ;; -*-emacs-lisp-*-
  2. ;;
  3. ;; Emacs startup file, e.g. /etc/emacs/site-start.d/50automoc.el
  4. ;; for the Debian automoc package
  5. ;;
  6. ;; Originally contributed by Nils Naumann <naumann@unileoben.ac.at>
  7. ;; Modified by Dirk Eddelbuettel <edd@debian.org>
  8. ;; Adapted for dh-make by Jim Van Zandt <jrv@debian.org>
  9. ;; The automoc package follows the Debian/GNU Linux 'emacsen' policy and
  10. ;; byte-compiles its elisp files for each 'emacs flavor' (emacs19,
  11. ;; xemacs19, emacs20, xemacs20...). The compiled code is then
  12. ;; installed in a subdirectory of the respective site-lisp directory.
  13. ;; We have to add this to the load-path:
  14. (let ((package-dir (concat "/usr/share/"
  15. (symbol-name debian-emacs-flavor)
  16. "/site-lisp/automoc")))
  17. ;; If package-dir does not exist, the automoc package must have
  18. ;; removed but not purged, and we should skip the setup.
  19. (when (file-directory-p package-dir)
  20. (if (fboundp 'debian-pkg-add-load-path-item)
  21. (debian-pkg-add-load-path-item package-dir)
  22. (setq load-path (cons package-dir load-path)))
  23. (autoload 'automoc-mode "automoc-mode"
  24. "Major mode for editing automoc files." t)
  25. (add-to-list 'auto-mode-alist '("\\.automoc$" . automoc-mode))))