diff options
Diffstat (limited to 'app-emacs/inform-mode/files/50inform-mode-gentoo.el')
-rw-r--r-- | app-emacs/inform-mode/files/50inform-mode-gentoo.el | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app-emacs/inform-mode/files/50inform-mode-gentoo.el b/app-emacs/inform-mode/files/50inform-mode-gentoo.el new file mode 100644 index 000000000000..1f8d54f22993 --- /dev/null +++ b/app-emacs/inform-mode/files/50inform-mode-gentoo.el @@ -0,0 +1,12 @@ + +;;; inform-mode site-lisp configuration + +(setq load-path (cons "@SITELISP@" load-path)) + +(autoload 'inform-mode "inform-mode" "Inform editing mode." t) +(autoload 'inform-maybe-mode "inform-mode" "Inform/C header editing mode.") + +(setq auto-mode-alist + (append '(("\\.h\\'" . inform-maybe-mode) + ("\\.inf\\'" . inform-mode)) + auto-mode-alist)) |