This file is indexed.

/etc/emacs/site-start.d/50ecasound-el.el is in ecasound-el 2.9.1-7build1.

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
15
16
17
18
19
20
;; -*-emacs-lisp-*-
;;
;; Emacs startup file for the Debian ecasound-el package

(let ((package-dir (concat "/usr/share/"
                           (symbol-name debian-emacs-flavor)
                           "/site-lisp/ecasound-el")))

 ;; If package-dir does not exist, ecasound-el must have been removed but not
 ;; purged, and its setup should be skipped.
 (when (file-directory-p package-dir)
  (debian-pkg-add-load-path-item package-dir)

  (autoload 'ecasound "ecasound"
    "Run an inferior ecasound, with I/O through BUFFER." t)

  (autoload 'ecasound-ewf-mode "ecasound"
    "A major mode for editing ecasound .ewf files." t)

  (add-to-list 'auto-mode-alist '("\\.ewf\\'" . ecasound-ewf-mode))))