/etc/emacs/site-start.d/50sepia.el is in sepia 0.992-6.
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 | ;; -*-emacs-lisp-*-
(let ((package-dir (concat "/usr/share/"
(symbol-name flavor)
"/site-lisp/sepia")))
;; If package-dir does not exist, the sepia package must have
;; removed but not purged, and we should skip the setup.
(when (file-directory-p package-dir)
(debian-pkg-add-load-path-item package-dir)
(autoload 'sepia-repl "sepia"
"Start the Sepia REPL." t)
(autoload 'sepia-scratch "sepia"
"Switch to the sepia scratchpad." t)))
|