Variable: etc-authors-mode-hook
etc-authors-mode-hook is a variable defined in etc-authors-mode.el.gz.
Value
nil
Documentation
Hook run after entering Authors View mode.
No problems result if this variable is not bound.
add-hook automatically binds it. (This is true for all hook variables.)
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/etc-authors-mode.el.gz
;;;###autoload
(define-derived-mode etc-authors-mode special-mode "Authors View"
"Major mode for viewing \"etc/AUTHORS\" from the Emacs distribution.
Provides some basic font locking and not much else."
(setq-local font-lock-defaults
'(etc-authors-mode-font-lock-keywords nil nil ((?_ . "w"))))
(setq font-lock-multiline nil)
(etc-authors-mode--hide-local-variables))