Function: semantic-show-unmatched-syntax-next

semantic-show-unmatched-syntax-next is an interactive and byte-compiled function defined in util-modes.el.gz.

Signature

(semantic-show-unmatched-syntax-next)

Documentation

Move forward to the next occurrence of unmatched syntax.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/util-modes.el.gz
(defun semantic-show-unmatched-syntax-next ()
  "Move forward to the next occurrence of unmatched syntax."
  (interactive)
  (let ((o (semantic-next-unmatched-syntax (point))))
    (if o
	(goto-char (overlay-start o)))))