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