;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; append-tuareg.el - Tuareg quick installation: Append this file to .emacs. (setq load-path (cons "~igarashi/lib/elisp/tuareg-mode" load-path)) (setq auto-mode-alist (cons '("\\.ml\\w?" . tuareg-mode) auto-mode-alist)) (autoload 'tuareg-mode "tuareg" "Major mode for editing Caml code" t) (autoload 'camldebug "camldebug" "Run the Caml debugger" t) (autoload 'tuareg-run-caml "tuareg" "Run the Caml interactive compiler" t) (if (and (boundp 'window-system) window-system) (require 'font-lock))