Variable: semantic-lex-c-VC++-end-std-namespace

semantic-lex-c-VC++-end-std-namespace is a variable defined in c.el.gz.

Value

((looking-at "\\(_STD_END\\)")
 (goto-char
  (match-end 0))
 (setq semantic-lex-end-point
       (point)))

Documentation

Handle VC++'s definition of the std namespace.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/bovine/c.el.gz
(define-lex-regex-analyzer semantic-lex-c-VC++-end-std-namespace
  "Handle VC++'s definition of the std namespace."
  "\\(_STD_END\\)"
  (goto-char (match-end 0))
  (setq semantic-lex-end-point (point)))