blob: 69ca8b1c235a3c833d2c77a7e6340f3064066dc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
;;; matlab site-lisp configuration
(setq load-path (cons "@SITELISP@" load-path))
(autoload 'matlab-mode "matlab" "Enter Matlab mode." t)
(setq auto-mode-alist (cons '("\\.m\\'" . matlab-mode) auto-mode-alist))
(autoload 'matlab-shell "matlab" "Interactive Matlab mode." t)
(autoload 'tlc-mode "tlc" "tlc Editing Mode" t)
(add-to-list 'auto-mode-alist '("\\.tlc$" . tlc-mode))
(setq tlc-indent-function t)
|