/etc/emacs/site-start.d/50inform-mode.el is in inform-mode 1.5.8-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | ;; Emacs startup file for Debian package ‘inform-mode’.
;;
;; Copyright:
;; © Ben Finney <bignose@debian.org>
;; © Jim Van Zandt <jrv@debian.org>
;; © Dirk Eddelbuettel <edd@debian.org>
;; © Nils Naumann <naumann@unileoben.ac.at>
(let
;; This package follows the Debian Emacsen policy: it
;; byte-compiles its elisp files for each Emacs “flavor”
;; (‘emacs20’, ‘xemacs20’, ‘emacs21’, ‘xemacs21’, ...). The
;; compiled code is then installed in a package subdirectory of
;; the respective ‘site-lisp’ directory.
((package-dir (concat "/usr/share/"
(symbol-name debian-emacs-flavor)
"/site-lisp/inform-mode")))
(when (file-directory-p package-dir)
;; Add the package directory to the Emacs load-path.
(debian-pkg-add-load-path-item package-dir)
(autoload 'inform-mode "inform-mode" "Inform editing mode." t)
(add-to-list 'auto-mode-alist '("\\.inf\\'" . inform-mode) t)
(autoload 'inform-maybe-mode "inform-mode" "Inform/C header editing mode.")
(add-to-list 'auto-mode-alist '("\\.h\\'" . inform-maybe-mode) t)
(add-hook 'inform-mode-hook 'turn-on-font-lock)
))
;; Local variables:
;; coding: utf-8
;; mode: emacs-lisp
;; End:
|