Variable: bug-reference-mode-hook

bug-reference-mode-hook is a customizable variable defined in bug-reference.el.gz.

Value

nil

Documentation

Hook run after entering or leaving bug-reference-mode(var)/bug-reference-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-mode
  "Toggle hyperlinking bug references in the buffer (Bug Reference mode)."
  :after-hook (bug-reference--run-auto-setup)
  (bug-reference--init bug-reference-mode))