/emacs/site-start.d/50autoconf.el

http://github.com/brinkman83/bashrc · Emacs Lisp · 17 lines · 8 code · 2 blank · 7 comment · 1 complexity · 297521889d690871ec9d89c5eeff745a MD5 · raw file

  1. ;; -*-emacs-lisp-*-
  2. ;;
  3. ;; Emacs startup file for the Debian GNU/Linux autoconf package
  4. (if (not (file-exists-p "/usr/share/emacs/site-lisp/autoconf"))
  5. (message "Package autoconf removed but not purged. Skipping setup.")
  6. ;; To avoid a dependency on emacsen for our modes and avoid having a
  7. ;; separate autoconf-el package, we don't byte-compile the .el
  8. ;; files, so we only need to add a source directory to load-path.
  9. (debian-pkg-add-load-path-item
  10. (concat "/usr/share/emacs/site-lisp/autoconf"))
  11. ;; autoloads for autotest-mode.el
  12. (autoload 'autotest-mode "autotest-mode"
  13. "Major mode for editing autotest files." t)
  14. (setq auto-mode-alist
  15. (cons '("\\.at\\'" . autotest-mode) auto-mode-alist)))