Function: semantic--umatched-syntax-needs-refresh-p
semantic--umatched-syntax-needs-refresh-p is a byte-compiled function
defined in semantic.el.gz.
Signature
(semantic--umatched-syntax-needs-refresh-p)
Documentation
Return non-nil if the unmatched syntax cache needs a refresh.
That is, if it is dirty or if the current parse tree isn't up to date.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic.el.gz
(defsubst semantic--umatched-syntax-needs-refresh-p ()
"Return non-nil if the unmatched syntax cache needs a refresh.
That is, if it is dirty or if the current parse tree isn't up to date."
(or semantic-unmatched-syntax-cache-check
(not (semantic-parse-tree-up-to-date-p))))