This file is indexed.

/etc/emacs/site-start.d/51ghc-mod-el.el is in ghc-mod-el 5.4.0.0-1build1.

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
;; -*-emacs-lisp-*-
(setq load-path (cons (concat "/usr/share/"
                              (symbol-name debian-emacs-flavor)
			      "/site-lisp/ghc-mod") load-path))

(autoload 'ghc-init "ghc" nil t)
(add-hook 'haskell-mode-hook (lambda () (ghc-init)))

; ghc-mod's C-cC-t conflict with haskell-doc-mode
(remove-hook 'haskell-mode-hook 'turn-on-haskell-doc-mode)