Variable: global-semantic-mru-bookmark-mode-hook
global-semantic-mru-bookmark-mode-hook is a customizable variable
defined in mru-bookmark.el.gz.
Value
nil
Documentation
Hook run after entering or leaving global-semantic-mru-bookmark-mode(var)/global-semantic-mru-bookmark-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/cedet/semantic/mru-bookmark.el.gz
;;;###autoload
(define-minor-mode global-semantic-mru-bookmark-mode
"Toggle global use of option `semantic-mru-bookmark-mode'."
:global t :group 'semantic :group 'semantic-modes
;; Not needed because it's autoloaded instead.
;; :require 'semantic-util-modes
(semantic-toggle-minor-mode-globally
'semantic-mru-bookmark-mode (if global-semantic-mru-bookmark-mode 1 -1)))