/etc/emacs/site-start.d/50emacs-jabber.el is in emacs-jabber 0.8.0-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 | ;; -*-emacs-lisp-*-
;;
;; Emacs startup file for the Debian emacs-jabber package.
(if (file-exists-p "/usr/share/emacs/site-lisp/emacs-jabber")
(progn
(debian-pkg-add-load-path-item
(concat "/usr/share/" (symbol-name flavor) "/site-lisp/emacs-jabber"))
;; Make sure that the uncompiled files are also in the load-path, near the
;; end. This is for moving point to the code when view help.
(setq load-path
(append load-path '("/usr/share/emacs/site-lisp/emacs-jabber")))
(load "jabber-autoloads"))
(message "Package emacs-jabber removed but not purged. Skipping setup."))
|