/etc/emacs/site-start.d/50cafeobj-mode.el is in cafeobj-mode 1.5.4-4.
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 | ;; -*-emacs-lisp-*-
;;
;; Emacs startup file, e.g. /etc/emacs/site-start.d/50cafeobj-mode.el
;; for the Debian cafeobj-mode package
(autoload 'cafeobj-mode "cafeobj-mode" "CafeOBJ mode." t)
(autoload 'cafeobj "cafeobj-mode" "Run CafeOBJ interpreter." t)
(add-to-list 'auto-mode-alist '("\\.mod$" . cafeobj-mode))
(add-to-list 'auto-mode-alist '("\\.cafe$" . cafeobj-mode))
|