diff options
author | Keri Harris <keri@gentoo.org> | 2007-10-04 06:22:39 +0000 |
---|---|---|
committer | Keri Harris <keri@gentoo.org> | 2007-10-04 06:22:39 +0000 |
commit | b8acdffd9793c1cb1d83aed2cf30c7094ba6ae74 (patch) | |
tree | f0e7d9ded9d3c745c6a794bd5543cdc8590a39c0 /dev-lang/mozart/files | |
parent | version bump for GNOME 2.20 (diff) | |
download | gentoo-2-b8acdffd9793c1cb1d83aed2cf30c7094ba6ae74.tar.gz gentoo-2-b8acdffd9793c1cb1d83aed2cf30c7094ba6ae74.tar.bz2 gentoo-2-b8acdffd9793c1cb1d83aed2cf30c7094ba6ae74.zip |
Add proper support for emacs. Closes #194604
(Portage version: 2.1.3.11)
Diffstat (limited to 'dev-lang/mozart/files')
-rw-r--r-- | dev-lang/mozart/files/50mozart-gentoo.el | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/dev-lang/mozart/files/50mozart-gentoo.el b/dev-lang/mozart/files/50mozart-gentoo.el new file mode 100644 index 000000000000..64f65c54a682 --- /dev/null +++ b/dev-lang/mozart/files/50mozart-gentoo.el @@ -0,0 +1,11 @@ + +;;; mozart site-lisp configuration + +(add-to-list 'load-path "@SITELISP@") +(autoload 'oz-mode "oz" "Major mode for editing Oz code." t) +(autoload 'oz-gump-mode "oz" + "Major mode for editing Oz code with embedded Gump specifications." t) +(autoload 'ozm-mode "mozart" "Major mode for displaying Oz machine code." t) +(add-to-list 'auto-mode-alist '("\\.oz$" . oz-mode)) +(add-to-list 'auto-mode-alist '("\\.ozg$" . oz-gump-mode)) +(add-to-list 'auto-mode-alist '("\\.ozm$" . ozm-mode)) |