/etc/emacs/site-start.d/50gnats-user.el is in gnats-user 4.1.0-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 15 16 17 18 19 20 21 22 23 24 25 26 27 | ;;
;; GNATS (bug reporting system) set-up for emacs
;;
(setq load-path
(cons
(concat "/usr/share/" (symbol-name debian-emacs-flavor)
"/site-lisp/gnats")
load-path))
(autoload 'edit-pr "gnats"
"Command to edit a problem report." t)
(autoload 'query-pr "gnats"
"Command to query information about problem reports." t)
(autoload 'send-pr "gnats"
"Command to create and send a problem report." t)
(autoload 'view-pr "gnats"
"Command to view a problem report." t)
(autoload 'unlock-pr "gnats"
"Unlock a problem report." t)
(autoload 'unlock-database "gnats"
"Unlock the whole database." t)
(autoload 'gnats-change-database "gnats"
"Set new database parameters." t)
(autoload 'gnats-dbconfig-mode "gnats"
"Major mode for editing the `dbconfig' GNATS configuration file." t)
(add-to-list 'auto-mode-alist '("\\<dbconfig$" . gnats-dbconfig-mode))
|