/etc/emacs/site-start.d/50noweb.el is in noweb 2.11b-9.
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 | ;-*-emacs-lisp-*-
;; Just assign the noweb major mode to .nw files
(autoload 'noweb-mode "/usr/share/emacs/site-lisp/noweb-mode.el"
"Minor (meta) mode for editing noweb sources." t)
(or (assoc "\\.nw$" auto-mode-alist)
(setq auto-mode-alist (cons '("\\.nw$" . noweb-mode)
auto-mode-alist)))
|