Variable: bug-reference-prog-mode-hook
bug-reference-prog-mode-hook is a customizable variable defined in
bug-reference.el.gz.
Value
nil
Documentation
Hook run after entering or leaving bug-reference-prog-mode(var)/bug-reference-prog-mode(fun).
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/progmodes/bug-reference.el.gz
;;;###autoload
(define-minor-mode bug-reference-prog-mode
"Like `bug-reference-mode', but only buttonize in comments and strings."
:after-hook (bug-reference--run-auto-setup)
(if bug-reference-prog-mode
(jit-lock-register #'bug-reference-fontify)
(jit-lock-unregister #'bug-reference-fontify)
(save-restriction
(widen)
(bug-reference-unfontify (point-min) (point-max)))))