This file is indexed.

/etc/emacs/site-start.d/50ferret-vis.el is in ferret-vis 6.9.3-4build1.

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
;; -*-emacs-lisp-*-
;;
;; Emacs startup file for the Debian GNU/Linux cmake package

(if (file-exists-p "/usr/share/emacs/site-lisp/ferret.el")
 (progn
 (debian-pkg-add-load-path-item "/usr/share/emacs/site-lisp")
  (autoload 'ferret-mode "ferret"
   "Major mode for editing Ferret journal files." t)
  (setq auto-mode-alist
   (append '( ("\\.jnl\\'" . ferret-mode))
    auto-mode-alist)))
 (message "ferret-vis removed but not purged, skipping setup"))