semantic-lex-comments-as-whitespace
semantic-lex-comments-as-whitespace is a variable defined in `
lex.el
'.
Its value is shown
below.
Documentation:
Detect comments and create a whitespace 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))
'whitespace)
(setcdr
(semantic-lex-token-bounds
(car semantic-lex-token-stream))
semantic-lex-end-point)
(semantic-lex-push-token
(semantic-lex-token 'whitespace
(match-beginning 0)
semantic-lex-end-point)))))