summaryrefslogtreecommitdiff
path: root/dev-lang/mozart/files/50mozart-gentoo.el
blob: 3533d49d693bab0e8f2a56f61b170a997c4ba25d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
;;; mozart site-lisp configuration

(or (getenv "OZHOME")
    (setenv "OZHOME" "/usr"))
(add-to-list 'load-path "@SITELISP@")
(autoload 'run-oz' "oz" "Start Mozart as a sub-process" t)
(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))