Function: semantic-lex-ignore-newline
semantic-lex-ignore-newline is a byte-compiled function defined in
lex.el.gz.
Signature
(semantic-lex-ignore-newline)
Documentation
Detect and ignore newline tokens.
Use this ONLY if newlines are not whitespace characters (such as when they are comment end characters).
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/lex.el.gz
(define-lex-regex-analyzer semantic-lex-ignore-newline
"Detect and ignore newline tokens.
Use this ONLY if newlines are not whitespace characters (such as when
they are comment end characters)."
"\\s-*\\(\n\\|\\s>\\)"
(setq semantic-lex-end-point (match-end 0)))