This file is indexed.

/etc/emacs/site-start.d/50gri-el.el is in gri-el 2.12.23-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
(if (not (file-exists-p "/usr/share/emacs/site-lisp/gri-el/gri-mode.el"))
    (message "Package gri-el is not installed.  Skipping setup.")
  (debian-pkg-add-load-path-item
   (concat "/usr/share/" (symbol-name debian-emacs-flavor) "/site-lisp/gri-el"))
  (setq gri*directory-tree "/usr/share/gri/")
  (autoload 'gri-mode "gri-mode" "Enter Gri-mode." t)
  (setq auto-mode-alist (cons '("\\.gri\\'" . gri-mode) auto-mode-alist)))