/etc/emacs/site-start.d/50egg.el is in egg 4.2.0-1.
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 36 37 38 39 40 41 42 43 | ;;; 50egg-init.el --- Debian Egg startup file -*- mode: emacs-lisp -*-
;;
;; Originally named:egg-init.el
;;
;; Takuo KITAME <kitame@northeye.org>
;; ISHIKAWA Mutsumi <ishikawa@debian.org>
;;
(if (fboundp 'debian-pkg-add-load-path-item)
(debian-pkg-add-load-path-item
(concat "/usr/share/" (symbol-name debian-emacs-flavor)
"/site-lisp/egg"))
(setq load-path
(cons
(concat "/usr/share/" (symbol-name debian-emacs-flavor)
"/site-lisp/egg")
load-path)))
(autoload 'egg-activate-anthy "egg-anthy"
"Activate ANTHY backend of Tamago 4." t)
(register-input-method
"japanese-egg-anthy" "Japanese" 'egg-activate-anthy
"¤¢.." "Romaji -> Hiragana -> Kanji&Kana"
'its-select-hiragana)
(autoload 'egg-mode "egg" "Toggle EGG mode." t)
(set-language-info "Japanese" 'input-method "japanese-egg-anthy")
(defgroup egg nil ""
:group 'leim :load "egg")
(defgroup anthy nil ""
:group 'egg :load "egg-anthy")
(defgroup its nil ""
:group 'egg :load "its")
(defgroup hira nil ""
:group 'its :load "its-hira")
;;; Try M-x customize-group hira
|