/etc/emacs/site-start.d/50coccinelle.el is in coccinelle 1.0.4.deb-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 | ;; -*-emacs-lisp-*-
(setq auto-mode-alist
(cons '("\\.cocci$" . cocci-mode) auto-mode-alist))
(setq auto-mode-alist
(cons '("\\.iso$" . cocci-mode) auto-mode-alist))
(autoload 'cocci-mode "cocci"
"Major mode for editing cocci code." t)
;; vim: ft=lisp
|