Function: semantic-showing-unmatched-syntax-p

semantic-showing-unmatched-syntax-p is a byte-compiled function defined in util-modes.el.gz.

Signature

(semantic-showing-unmatched-syntax-p)

Documentation

Return non-nil if an unmatched syntax overlay was found in buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/util-modes.el.gz
(defun semantic-showing-unmatched-syntax-p ()
  "Return non-nil if an unmatched syntax overlay was found in buffer."
  (let ((ol (overlays-in (point-min) (point-max)))
        found)
    (while (and ol (not found))
      (setq found (semantic-unmatched-syntax-overlay-p (car ol))
            ol    (cdr ol)))
    found))