This file is indexed.

/etc/emacs/site-start.d/50eekboek.el is in eekboek 2.02.04+dfsg-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
 8
 9
10
11
12
;; Use eekboek-mode for .eb files. Treat .ebz files as (zip) archives.

(if (not (file-exists-p "/usr/share/emacs/site-lisp/eekboek-mode.el"))
    (message "eekboek removed but not purged, skipping setup")

(autoload 'eekboek-mode "eekboek-mode" "Major mode for editing EekBoek data." t)
(add-to-list 'auto-mode-alist '("\\.eb\\'" . eekboek-mode))
(add-to-list 'auto-mode-alist '("\\.ebz\\'" . archive-mode))
(if (boundp 'auto-coding-alist) ;; no such variable in xemacs21
    (add-to-list 'auto-coding-alist '("\\.ebz\\'" . no-conversion)))
)
;;; eekboek-site-start.el ends here