Variable: semantic-lex-ignore-whitespace
semantic-lex-ignore-whitespace is a variable defined in lex.el.gz.
Value
((looking-at "\\s-+") (setq semantic-lex-end-point (match-end 0)))
Documentation
Detect and skip over whitespace tokens.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/lex.el.gz
(define-lex-regex-analyzer semantic-lex-ignore-whitespace
"Detect and skip over whitespace tokens."
;; catch whitespace when needed
"\\s-+"
;; Skip over the detected whitespace, do not create a token for it.
(setq semantic-lex-end-point (match-end 0)))