From: Daniel Colascione Date: Mon, 25 May 2015 20:51:35 +0000 (-0700) Subject: Add C-language keyword constants to C++ X-Git-Tag: emacs-25.0.90~1972 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=49c8458d7b7194a7b6f347bf4a730391df74df2b;p=emacs.git Add C-language keyword constants to C++ * lisp/progmodes/cc-langs.el (c-constant-kwds): Add C-language keyword constants to C++. --- diff --git a/lisp/progmodes/cc-langs.el b/lisp/progmodes/cc-langs.el index ee5a5a6503f..07f5ef44d11 100644 --- a/lisp/progmodes/cc-langs.el +++ b/lisp/progmodes/cc-langs.el @@ -2400,7 +2400,7 @@ This construct is \" :\"." "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