Variable: global-semantic-decoration-mode-hook
global-semantic-decoration-mode-hook is a customizable variable
defined in mode.el.gz.
Value
nil
Documentation
Hook run after entering or leaving global-semantic-decoration-mode(var)/global-semantic-decoration-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/decorate/mode.el.gz
;;; DECORATION MODE
;;
;; Generic mode for handling basic highlighting and decorations.
;;
;;;###autoload
(define-minor-mode global-semantic-decoration-mode
"Toggle global use of option `semantic-decoration-mode'.
Decoration mode turns on all active decorations as specified
by `semantic-decoration-styles'."
:global t :group 'semantic :group 'semantic-modes
;; Not needed because it's autoloaded instead.
;; :require 'semantic/decorate/mode
(semantic-toggle-minor-mode-globally
'semantic-decoration-mode (if global-semantic-decoration-mode 1 -1)))