Function: semantic-unmatched-syntax-tokens
semantic-unmatched-syntax-tokens is a byte-compiled function defined
in semantic.el.gz.
Signature
(semantic-unmatched-syntax-tokens)
Documentation
Return the list of unmatched syntax tokens.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic.el.gz
(defun semantic-unmatched-syntax-tokens ()
"Return the list of unmatched syntax tokens."
;; If the cache need refresh then do a full re-parse.
(if (semantic--umatched-syntax-needs-refresh-p)
;; To avoid a recursive call, temporarily disable
;; `semantic-unmatched-syntax-hook'.
(let (semantic-unmatched-syntax-hook)
(condition-case nil
(progn
(semantic-clear-toplevel-cache)
(semantic-fetch-tags))
(quit
(message "semantic-unmatched-syntax-tokens:\
parsing of buffer canceled"))
)))
semantic-unmatched-syntax-cache)