Variable: semantic-after-toplevel-cache-change-hook

semantic-after-toplevel-cache-change-hook is a variable defined in semantic.el.gz.

Value

(semantic-collector-buffer-flush)

Documentation

Hooks run after the buffer tag list has changed.

This list will change when a buffer is reparsed, or when the tag list in a buffer is cleared. It is *NOT* called if the current tag list is partially reparsed.

Hook functions must take one argument, which is the new list of tags associated with this buffer.

For language specific hooks, make sure you define this as a local hook.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic.el.gz
(defvar semantic-after-toplevel-cache-change-hook nil
  "Hooks run after the buffer tag list has changed.
This list will change when a buffer is reparsed, or when the tag list
in a buffer is cleared.  It is *NOT* called if the current tag list is
partially reparsed.

Hook functions must take one argument, which is the new list of tags
associated with this buffer.

For language specific hooks, make sure you define this as a local hook.")