/etc/emacs/site-start.d/50haskell-mode.el is in haskell-mode 16.1-2.
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 | ;;
;; /etc/emacs/site-start.d/50haskell-mode.el
;;
(let ((package-dir (concat "/usr/share/"
(if (boundp 'debian-emacs-flavor)
(symbol-name debian-emacs-flavor)
"emacs")
"/site-lisp/haskell-mode")))
(debian-pkg-add-load-path-item package-dir))
(load "haskell-mode-autoloads")
|