semantic-lex-comments
semantic-lex-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)
(save-excursion
(forward-comment 1)
(if
(bolp)
(backward-char 1))
(setq semantic-lex-end-point
(point))
(if
(eq
(semantic-lex-token-class
(car semantic-lex-token-stream))
'comment)
(setcdr
(semantic-lex-token-bounds
(car semantic-lex-token-stream))
semantic-lex-end-point)
(semantic-lex-push-token
(semantic-lex-token 'comment
(match-beginning 0)
semantic-lex-end-point)))))