/etc/emacs/site-start.d/50sawfish.el is in sawfish 1:1.11-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 | ;; -*-emacs-lisp-*-
(setq load-path (cons (concat "/usr/share/"
(symbol-name flavor)
"/site-lisp/sawfish") load-path))
(autoload 'sawfish-mode "sawfish" "sawfish-mode" t)
(setq auto-mode-alist (cons '("\\.sawfishrc$" . sawfish-mode) auto-mode-alist)
auto-mode-alist (cons '("\\.jl$" . sawfish-mode) auto-mode-alist)
auto-mode-alist (cons '("\\.sawfish/rc$" . sawfish-mode) auto-mode-alist))
|