Variable: mpc-tagbrowser-mode-hook
mpc-tagbrowser-mode-hook is a variable defined in mpc.el.gz.
Value
nil
Documentation
Hook run after entering '(MPC- mpc-tag-name) 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/mpc.el.gz
(define-derived-mode mpc-tagbrowser-mode mpc-mode '("MPC-" mpc-tag-name)
(setq-local mode-line-process '("" mpc-tag-name))
(setq-local mode-line-format nil)
(setq-local header-line-format '("" mpc-tag-name)) ;; "s"
(setq-local buffer-undo-list t)
)