Function: semantic-force-refresh

semantic-force-refresh is an interactive and byte-compiled function defined in semantic.el.gz.

Signature

(semantic-force-refresh)

Documentation

Force a full refresh of the current buffer's tags.

Throw away all the old tags, and recreate the tag database.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic.el.gz
;;; User interface

(defun semantic-force-refresh ()
  "Force a full refresh of the current buffer's tags.
Throw away all the old tags, and recreate the tag database."
  (interactive)
  (semantic-clear-toplevel-cache)
  (semantic-fetch-tags)
  (message "Buffer reparsed."))