diff options
author | Ulrich Müller <ulm@gentoo.org> | 2007-05-03 19:08:32 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2007-05-03 19:08:32 +0000 |
commit | f8e6a23ee03ed228ea647d751bb9a4231bf6b9f5 (patch) | |
tree | eef5d5f1a67ae105577c41da9eede8d7223d056d /app-emacs/jasmin/files/60jasmin-gentoo.el | |
parent | amd64 stable, bug 176805 (diff) | |
download | gentoo-2-f8e6a23ee03ed228ea647d751bb9a4231bf6b9f5.tar.gz gentoo-2-f8e6a23ee03ed228ea647d751bb9a4231bf6b9f5.tar.bz2 gentoo-2-f8e6a23ee03ed228ea647d751bb9a4231bf6b9f5.zip |
Replaced loading of package by autoload mechanism.
(Portage version: 2.1.2.5)
Diffstat (limited to 'app-emacs/jasmin/files/60jasmin-gentoo.el')
-rw-r--r-- | app-emacs/jasmin/files/60jasmin-gentoo.el | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app-emacs/jasmin/files/60jasmin-gentoo.el b/app-emacs/jasmin/files/60jasmin-gentoo.el new file mode 100644 index 000000000000..bbcdde0d3d9b --- /dev/null +++ b/app-emacs/jasmin/files/60jasmin-gentoo.el @@ -0,0 +1,8 @@ + +;;; site-lisp configuration for jasmin + +(add-to-list 'load-path "@SITELISP@") +(autoload 'jasmin-mode "jasmin" + "Major mode for editing Jasmin Java bytecode assembler files." t) +(or (assoc "\\.j\\'" auto-mode-alist) + (setq auto-mode-alist (cons '("\\.j\\'" . jasmin-mode) auto-mode-alist))) |