Function: semantic-lex-unterminated-syntax-detected

semantic-lex-unterminated-syntax-detected is a byte-compiled function defined in lex.el.gz.

Signature

(semantic-lex-unterminated-syntax-detected SYNTAX)

Documentation

Inside a lexical analyzer, use this when unterminated syntax was found.

Argument SYNTAX indicates the type of syntax that is unterminated. The job of this function is to move (point) to a new logical location so that analysis can continue, if possible.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/lex.el.gz
(defsubst semantic-lex-unterminated-syntax-detected (syntax)
  "Inside a lexical analyzer, use this when unterminated syntax was found.
Argument SYNTAX indicates the type of syntax that is unterminated.
The job of this function is to move (point) to a new logical location
so that analysis can continue, if possible."
  (goto-char
   (funcall semantic-lex-unterminated-syntax-end-function
	    syntax
	    (car semantic-lex-analysis-bounds)
	    (cdr semantic-lex-analysis-bounds)
	    ))
  (setq semantic-lex-end-point (point)))