This file is indexed.

/etc/emacs/site-start.d/50rail.el is in rail 1.2.11-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
12
13
14
;; -*-emacs-lisp-*-
;;
;; Emacs startup file for Debian for the Debian rail package

(let ((package-dir (concat "/usr/share/"
                           (symbol-name flavor)
                           "/site-lisp/rail")))
  (when (file-directory-p package-dir)
    (if (fboundp 'debian-pkg-add-load-path-item)
        (debian-pkg-add-load-path-item package-dir)
      (setq load-path (cons package-dir load-path))
      )
    )
  )