Variable: semantic-lex-c-preprocessor-symbol-map-builtin
semantic-lex-c-preprocessor-symbol-map-builtin is a variable defined
in c.el.gz.
Value
(("__THROW" . "")
("__const" . "const")
("__restrict" . "")
("__attribute_pure__" . "")
("__attribute_malloc__" . "")
("__nonnull" . "")
("__wur" . "")
("__declspec"
(spp-arg-list
("foo")
1 . 2))
("__attribute__"
(spp-arg-list
("foo")
1 . 2))
("__asm"
(spp-arg-list
("foo")
1 . 2)))
Documentation
List of symbols to include by default.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/bovine/c.el.gz
;;; Pre-processor maps
;;
;;; Lexical analysis
(defvar semantic-lex-c-preprocessor-symbol-map-builtin
'( ("__THROW" . "")
("__const" . "const")
("__restrict" . "")
("__attribute_pure__" . "")
("__attribute_malloc__" . "")
("__nonnull" . "")
("__wur" . "")
("__declspec" . ((spp-arg-list ("foo") 1 . 2)))
("__attribute__" . ((spp-arg-list ("foo") 1 . 2)))
("__asm" . ((spp-arg-list ("foo") 1 . 2)))
)
"List of symbols to include by default.")