===========================================================================
$NetBSD$

To use the tuareg-mode for editing caml or ocaml files, you may want to
put the following into your .emacs:

(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 "cameldeb" "Run the Caml debugger." t)

===========================================================================
