This file is indexed.

/etc/emacs/site-start.d/50ats2-lang.el is in ats2-lang 0.2.6-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
;; -*-emacs-lisp-*-
(if (not (file-exists-p "/usr/share/emacs/site-lisp/ats2-mode"))
    (message "Package ats2-mode needs reinstall.  Skipping setup.")

  (setq load-path (cons (concat "/usr/share/"
                                (symbol-name debian-emacs-flavor)
                                "/site-lisp/ats2-mode") load-path))
  (add-to-list 'auto-mode-alist '("\\.\\(d\\|s\\)ats\\'" . ats-mode))
  (autoload 'ats-mode "ats2-mode" "Major mode to edit ATS2 source code" t)
  (require 'ats2-flymake)
  (add-hook 'ats-mode-hook 'ats2-flymake-load)
)