semantic-lex-ignore-comments
semantic-lex-ignore-comments is a variable defined in `
lex.el
'.
Its value is shown
below.
Documentation:
Detect and create a comment token.
Value:
((looking-at semantic-lex-comment-regex)
(let
((comment-start-point
(point)))
(forward-comment 1)
(if
(eq
(point)
comment-start-point)
(skip-syntax-forward "-.'"
(point-at-eol))
(if
(bolp)
(backward-char 1)))
(if
(eq
(point)
comment-start-point)
(error "Strange comment syntax prevents lexical analysis"))
(setq semantic-lex-end-point
(point))))