Posted by Pablo Funes on February 28, 2000 at 15:58:31:
How to edit matlab .m files with emacs/xemacs:
Just add the following to your .emacs file:
;; Matlab add-on
(autoload 'matlab-mode "/home/p/demo/demo/lib/matlab.el" "Enter Matlab mode." t)
(setq auto-mode-alist (cons '("\\.m\\'" . matlab-mode) auto-mode-alist))