Function: semantic-decorate-tags-after-full-reparse

semantic-decorate-tags-after-full-reparse is a byte-compiled function defined in mode.el.gz.

Signature

(semantic-decorate-tags-after-full-reparse TAG-LIST)

Documentation

Add decorations after a complete reparse of the current buffer.

TAG-LIST is the list of tags recently parsed. Flush all existing decorations and call semantic-decorate-add-decorations to add decorations. Called from semantic-after-toplevel-cache-change-hook.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/decorate/mode.el.gz
(defun semantic-decorate-tags-after-full-reparse (tag-list)
  "Add decorations after a complete reparse of the current buffer.
TAG-LIST is the list of tags recently parsed.
Flush all existing decorations and call `semantic-decorate-add-decorations' to
add decorations.
Called from `semantic-after-toplevel-cache-change-hook'."
  ;; Flush everything
  (semantic-decorate-flush-decorations)
  ;; Add it back on
  (semantic-decorate-add-decorations tag-list))