emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 49c8458: Add C-language keyword constants to C++


From: Daniel Colascione
Subject: [Emacs-diffs] master 49c8458: Add C-language keyword constants to C++
Date: Mon, 25 May 2015 20:51:42 +0000

branch: master
commit 49c8458d7b7194a7b6f347bf4a730391df74df2b
Author: Daniel Colascione <address@hidden>
Commit: Daniel Colascione <address@hidden>

    Add C-language keyword constants to C++
    
    * lisp/progmodes/cc-langs.el (c-constant-kwds): Add C-language
    keyword constants to C++.
---
 lisp/progmodes/cc-langs.el |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lisp/progmodes/cc-langs.el b/lisp/progmodes/cc-langs.el
index ee5a5a6..07f5ef4 100644
--- a/lisp/progmodes/cc-langs.el
+++ b/lisp/progmodes/cc-langs.el
@@ -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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]