Variable: semantic-lex-ignore-newline

semantic-lex-ignore-newline is a variable defined in lex.el.gz.

Value

((looking-at "\\s-*\\(\n\\|\\s>\\)")
 (setq semantic-lex-end-point
       (match-end 0)))

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)))