summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2008-12-02 07:12:46 +0000
committerUlrich Müller <ulm@gentoo.org>2008-12-02 07:12:46 +0000
commit1335531b5540151ec91b24ee63cfbe9f80f996b1 (patch)
treeae1c54a417432a882c43de36f29409ac5829c3f4 /app-emacs/graphviz-dot-mode/files/50graphviz-dot-mode-gentoo.el
parentStable for HPPA (bug #249393). (diff)
downloadgentoo-2-1335531b5540151ec91b24ee63cfbe9f80f996b1.tar.gz
gentoo-2-1335531b5540151ec91b24ee63cfbe9f80f996b1.tar.bz2
gentoo-2-1335531b5540151ec91b24ee63cfbe9f80f996b1.zip
Add autoloading to site-init file.
(Portage version: 2.2_rc16/cvs/Linux 2.6.27-gentoo-r4 i686)
Diffstat (limited to 'app-emacs/graphviz-dot-mode/files/50graphviz-dot-mode-gentoo.el')
-rw-r--r--app-emacs/graphviz-dot-mode/files/50graphviz-dot-mode-gentoo.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/app-emacs/graphviz-dot-mode/files/50graphviz-dot-mode-gentoo.el b/app-emacs/graphviz-dot-mode/files/50graphviz-dot-mode-gentoo.el
index aaf1502ea39f..74aaeb792abd 100644
--- a/app-emacs/graphviz-dot-mode/files/50graphviz-dot-mode-gentoo.el
+++ b/app-emacs/graphviz-dot-mode/files/50graphviz-dot-mode-gentoo.el
@@ -1,4 +1,7 @@
-;;; site-lisp configuration for graphviz-dot-mode
+;;; graphviz-dot-mode site-lisp configuration
(add-to-list 'load-path "@SITELISP@")
+(autoload 'graphviz-dot-mode "graphviz-dot-mode"
+ "Major mode for the dot language." t)
+(add-to-list 'auto-mode-alist '("\\.dot\\'" . graphviz-dot-mode))