/etc/emacs/site-start.d/50howm.el is in howm 1.4.2-2.
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 howm package
;;
(let ((package-dir (concat "/usr/share/"
(symbol-name flavor)
"/site-lisp/howm")))
(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)))
(global-set-key "\C-c,," 'howm-menu)
(autoload 'howm-menu "howm" "Hitori Otegaru Wiki Modoki" t))
)
|