Variable: semanticdb-hooks
semanticdb-hooks is a variable defined in db-mode.el.gz.
Value
((semanticdb-semantic-init-hook-fcn semantic-init-db-hook)
(semanticdb-synchronize-table semantic-after-toplevel-cache-change-hook)
(semanticdb-partial-synchronize-table semantic-after-partial-cache-change-hook)
(semanticdb-revert-hook before-revert-hook)
(semanticdb-kill-hook kill-buffer-hook)
(semanticdb-kill-hook change-major-mode-hook)
(semanticdb-kill-emacs-hook kill-emacs-hook))
Documentation
List of hooks and values to add/remove when configuring semanticdb.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/db-mode.el.gz
;;; Start/Stop database use
;;
(defvar semanticdb-hooks
'((semanticdb-semantic-init-hook-fcn semantic-init-db-hook)
(semanticdb-synchronize-table semantic-after-toplevel-cache-change-hook)
(semanticdb-partial-synchronize-table semantic-after-partial-cache-change-hook)
(semanticdb-revert-hook before-revert-hook)
(semanticdb-kill-hook kill-buffer-hook)
(semanticdb-kill-hook change-major-mode-hook) ;; Not really a kill, but we need the same effect.
(semanticdb-kill-emacs-hook kill-emacs-hook)
)
"List of hooks and values to add/remove when configuring semanticdb.")