summaryrefslogtreecommitdiff
blob: 64f65c54a682437d76e68c59a8b613d877e09d74 (plain)
1
2
3
4
5
6
7
8
9
10
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))