semantic-lex-whitespace
semantic-lex-whitespace is a variable defined in `
lex.el
'.
Its value is shown
below.
Documentation:
Detect and create whitespace tokens.
Value:
((looking-at "\\s-+")
(if
(eq
(semantic-lex-token-class
(car semantic-lex-token-stream))
'whitespace)
(progn
(setq semantic-lex-end-point
(match-end 0))
(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)
(match-end 0)))))