This file is indexed.

/etc/emacs/site-start.d/50gtypist.el is in gtypist 2.9.5-3.

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
;; -*-emacs-lisp-*-
;;
;; Emacs startup file /etc/emacs/site-start.d/50gtypist.el for the
;; Debian GNU/Linux gtypist package

(let ((package-dir (concat "/usr/share/emacs/site-lisp/gtypist")))
  (when (file-directory-p package-dir)
    (setq load-path (cons package-dir load-path))
    (autoload 'gtypist-mode "gtypist-mode"
      "Major mode for editing gtypist files." t)
    (add-to-list 'auto-mode-alist '("\\.typ$" . gtypist-mode))))