/etc/emacs/site-start.d/51tuareg-mode.el is in tuareg-mode 1:2.0.10-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 | (add-to-list 'auto-mode-alist '("\\.ml[iylp]?\\'" . tuareg-mode))
(autoload 'tuareg-mode "tuareg" "Major mode for editing Caml code" t)
(autoload 'camldebug "ocamldebug-tuareg" "Run the Caml debugger" t)
(autoload 'tuareg-run-ocaml "tuareg"
"Run an OCaml toplevel process. I/O via buffer `*ocaml-toplevel*'."
t)
(defalias 'run-ocaml 'tuareg-run-ocaml)
(dolist (ext '(".cmo" ".cmx" ".cma" ".cmxa" ".cmi"))
(add-to-list 'completion-ignored-extensions ext))
(debian-pkg-add-load-path-item
(concat "/usr/share/"
(symbol-name debian-emacs-flavor)
"/site-lisp/tuareg-mode"))
|