/etc/emacs/site-start.d/20gnus.el is in gnus 5.11+v0.10.dfsg-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 23 24 25 26 27 28 29 30 31 32 33 34 35 | ;;
;; Emacs startup file for gnus package
;;
;; First condition checks that the compiled code for gnus is installed
;; in a subdirectory of the respective emacs flavour site-lisp
;; directory. Two cases when such code is not installed are 1) if the
;; package is not fully installed, and 2) the emacs flavour is not
;; intented to be used with this version of Gnus (e.g. the most recent
;; GNU Emacs 23 contains newer Gnus than is included in this package).
;;
(if (file-exists-p (concat "/usr/share/"
(symbol-name debian-emacs-flavor)
"/site-lisp/gnus/gnus.elc"))
(progn
(provide 'gnus-init)
(setq load-path (debian-pkg-add-load-path-item
(concat "/usr/share/"
(symbol-name
debian-emacs-flavor)
"/site-lisp/gnus")))
;; Make sure that the uncompiled files are also in the
;; load-path, though near the end.
(setq load-path (nconc load-path
(list "/usr/share/emacs/site-lisp/gnus/lisp")))
(cond ((string-match "XEmacs" emacs-version))
((string-match "Lucid" emacs-version))
((and (boundp 'epoch::version)
(stringp (symbol-value 'epoch::version))))
(t
(setq smiley-data-directory "/usr/share/pixmaps/smilies"
gnus-xmas-glyph-directory "/usr/share/pixmaps/gnus"
)))
))
|