This file is indexed.

/usr/share/sawfish/site-lisp/site-init.jl is in sawfish-data 1:1.5.3-2.1.

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
(setq load-path (nconc load-path (list "/var/lib/sawfish")))
(let*
    ((dir "/etc/X11/sawfish/site-init.d")
     (files (and (file-directory-p dir) (directory-files dir))))
  (mapc
    (lambda (file)
      (condition-case data
          (load (expand-file-name file dir) t t t)
        (error (error-handler-function (car data) (cdr data)))))
    (sort files)))