Variable: semantic-lex-charquote
semantic-lex-charquote is a variable defined in lex.el.gz.
Value
((looking-at "\\s\\+")
(semantic-lex-push-token
(semantic-lex-token 'charquote (match-beginning 0) (match-end 0))))
Documentation
Detect and create charquote tokens.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/lex.el.gz
(define-lex-simple-regex-analyzer semantic-lex-charquote
"Detect and create charquote tokens."
;; Character quoting characters (ie, \n as newline)
"\\s\\+" 'charquote)