Variable: semantic-edits-are-safe

semantic-edits-are-safe is a variable defined in semantic.el.gz.

Value

nil

Documentation

When non-nil, modifications do not require a reparse.

This prevents tags from being marked dirty, and it prevents top level edits from causing a cache check. Use this when writing programs that could cause a full reparse, but will not change the tag structure, such as adding or updating top-level(var)/top-level(fun) comments.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic.el.gz
(defvar semantic-edits-are-safe nil
  "When non-nil, modifications do not require a reparse.
This prevents tags from being marked dirty, and it prevents top level
edits from causing a cache check.
Use this when writing programs that could cause a full reparse, but
will not change the tag structure, such as adding or updating
`top-level' comments.")