This file is indexed.

/etc/emacs/site-start.d/50windows-el.el is in windows-el 2.41-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
15
;;; windows-init.el

(or (and (boundp 'noninteractive) noninteractive)
    (progn
      (setq load-path 
            (cons 
             (concat "/usr/share/" (symbol-name debian-emacs-flavor)
                     "/site-lisp/windows")
             load-path))

      (require 'windows)
      (win:startup-with-window)
      (define-key ctl-x-map "C" 'see-you-again)))

;;; windows-init.el ends here