semantic-lex-symbol-or-keyword

semantic-lex-symbol-or-keyword is a variable defined in `lex.el'.
Its value is shown below.

Documentation:
Detect and create symbol and keyword tokens.

Value:

((looking-at "\\(\\sw\\|\\s_\\)+") (semantic-lex-push-token (semantic-lex-token (or (semantic-lex-keyword-p (match-string 0)) 'symbol) (match-beginning 0) (match-end 0))))