This file is indexed.

/etc/emacs/site-start.d/50chess.el is in emacs-chess 2.0b6-1.1ubuntu1.

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 erc package

; add `/usr/share/emacs21/site-lisp/chess' to the
; load-path
(setq load-path (cons "/usr/share/emacs/site-lisp/chess/" load-path))
(setq load-path (cons (concat "/usr/share/"
                              (symbol-name flavor)
			      "/site-lisp/chess") load-path))

; Set the image path correctly for emacs-chess-pieces
(setq chess-images-directory
      "/usr/share/emacs/site-lisp/chess/pieces/xboard/")

; Set correct crafty path
(if (file-executable-p "/usr/games/crafty")
    (setq chess-crafty-path "/usr/games/crafty"))

; autoloads
(load "chess-auto")