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

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

Value

nil

Documentation

Normal hook run after the buffer cache has been updated.

This hook will run when the cache has been partially reparsed. Partial reparses are incurred when a user edits a buffer, and only the modified sections are rescanned.

Hook functions must take one argument, which is the list of tags updated in the current buffer.

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

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/edit.el.gz
;;; Code:
(defvar semantic-after-partial-cache-change-hook nil
  "Normal hook run after the buffer cache has been updated.

This hook will run when the cache has been partially reparsed.
Partial reparses are incurred when a user edits a buffer, and only the
modified sections are rescanned.

Hook functions must take one argument, which is the list of tags
updated in the current buffer.

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