Variable: semantic-lex-cpp-hashhash

semantic-lex-cpp-hashhash is a variable defined in c.el.gz.

Value

((looking-at "##")
 (semantic-lex-push-token
  (semantic-lex-token 'spp-concat
		      (match-beginning 0)
		      (match-end 0))))

Documentation

Match ## inside a CPP macro as special.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/bovine/c.el.gz
(define-lex-simple-regex-analyzer semantic-lex-cpp-hashhash
  "Match ## inside a CPP macro as special."
  "##" 'spp-concat)