Add C-language keyword constants to C++

* lisp/progmodes/cc-langs.el (c-constant-kwds): Add C-language
keyword constants to C++.
This commit is contained in:
Daniel Colascione
2015-05-25 13:51:35 -07:00
parent 1efdf7feb3
commit 49c8458d7b

View File

@@ -2400,7 +2400,7 @@ This construct is \"<keyword> <expression> :\"."
"false" "true") ; Defined in C99.
c++ (append
'("nullptr")
(c-lang-const c-constant-kwds))
(c-lang-const c-constant-kwds c))
objc '("nil" "Nil" "YES" "NO" "NS_DURING" "NS_HANDLER" "NS_ENDHANDLER")
idl '("TRUE" "FALSE")
java '("true" "false" "null") ; technically "literals", not keywords