Variable: global-semantic-mru-bookmark-mode
global-semantic-mru-bookmark-mode is a customizable variable defined
in mru-bookmark.el.gz.
Value
nil
Documentation
Non-nil if Global Semantic-Mru-Bookmark mode is enabled.
See the global-semantic-mru-bookmark-mode(var)/global-semantic-mru-bookmark-mode(fun) command
for a description of this minor mode.
Setting this variable directly does not take effect;
either customize it (see the info node (emacs)Easy Customization)
or call the function global-semantic-mru-bookmark-mode(var)/global-semantic-mru-bookmark-mode(fun).
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/mru-bookmark.el.gz
;;; MINOR MODE
;;
;; Tracking minor mode.
(defcustom global-semantic-mru-bookmark-mode nil
"If non-nil, enable `semantic-mru-bookmark-mode' globally.
When this mode is enabled, Emacs keeps track of which tags have
been edited, and you can re-visit them with \\[semantic-mrub-switch-tags]."
:group 'semantic
:group 'semantic-modes
:type 'boolean
:require 'semantic/util-modes
:initialize #'custom-initialize-default
:set (lambda (_sym val)
(global-semantic-mru-bookmark-mode (if val 1 -1))))