/etc/emacs/site-start.d/50evernote-mode.el is in evernote-mode 0.41-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 Debian for the Debian evernote-mode package
(let ((package-dir (concat "/usr/share/"
(symbol-name flavor)
"/site-lisp/evernote-mode")))
(when (file-directory-p package-dir)
(if (fboundp 'debian-pkg-add-load-path-item)
(debian-pkg-add-load-path-item package-dir)
(setq load-path (cons package-dir load-path))
)
)
)
|