/etc/emacs/site-start.d/51mu-cite.el is in mu-cite 8.1+0.20120227-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 15 16 17 18 19 20 21 22 | ;;; 51mu-cite.el --- Debian mu-cite startup file -*-mode: emacs-lisp;-*-
;;; Code:
(let ((path (concat "/usr/share/" (symbol-name flavor) "/site-lisp/mu-cite")))
(if (not (file-directory-p path))
() ;; package is removed but not purged
(if (featurep 'xemacs)
(if (featurep 'mule)
(and (file-directory-p (concat path "/mule"))
(setq path (concat path "/mule")))
(and (file-directory-p (concat path "/nomule"))
(setq path (concat path "/nomule")))))
(if (fboundp 'debian-pkg-add-load-path-item)
(debian-pkg-add-load-path-item path)
(setq load-path (cons path load-path)))
(autoload 'mu-cite-original "mu-cite" nil t)
(autoload 'latex-math-decode-buffer "latex-math-symbol" nil t)
;;
))
;;; 51mu-cite.el ends here
|