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