emacsen-startup.ex 712 B

12345678910111213141516171819
  1. ;; -*-emacs-lisp-*-
  2. ;;
  3. ;; Emacs startup file for the Debian GNU/Linux mtt 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. ;; The mtt package follows the Debian/GNU Linux 'emacsen' policy and
  9. ;; byte-compiles its elisp files for each 'emacs flavor' (emacs19,
  10. ;; xemacs19, emacs20, xemacs20...). The compiled code is then
  11. ;; installed in a subdirectory of the respective site-lisp directory.
  12. ;; We have to add this to the load-path:
  13. (setq load-path (cons (concat "/usr/share/"
  14. (symbol-name flavor)
  15. "/site-lisp/mtt") load-path))