]> git.eshelyaron.com Git - emacs.git/commitdiff
(c-constant-kwds): Add java: null, true, false.
authorGlenn Morris <rgm@gnu.org>
Tue, 28 Aug 2007 02:51:09 +0000 (02:51 +0000)
committerGlenn Morris <rgm@gnu.org>
Tue, 28 Aug 2007 02:51:09 +0000 (02:51 +0000)
lisp/ChangeLog
lisp/progmodes/cc-langs.el

index fbfa25d3a5d147e5bf006307f74ef096074d44d1..b8346887ab1f40682e359ce7bd22ad538cccf7f5 100644 (file)
@@ -1,3 +1,8 @@
+2007-08-28  Glenn Morris  <rgm@gnu.org>
+
+       * progmodes/cc-langs.el (c-constant-kwds): Add java: true, false,
+       null.
+
 2007-08-27  Alexandre Julliard  <julliard@winehq.org>
 
         * vc-git.el (vc-git-state): Call git-add --refresh to update the
@@ -5,7 +10,7 @@
         (vc-git-workfile-unchanged-p): Delegate implementation to
        vc-git-state.
        (vc-git-create-repo): Fixed invalid command.
-       
+
 2007-08-27  Richard Stallman  <rms@gnu.org>
 
        * textmodes/flyspell.el (flyspell-mode):
index 5f9dbad3be2c27b5162ec3f60b5d2c7cfdaaff98..d0ff9c523ade6d91a284ab14783f37bc78eeb187 100644 (file)
@@ -2075,6 +2075,7 @@ nevertheless contains a list separated with ';' and not ','."
            "false" "true")             ; Defined in C99.
   objc    '("nil" "Nil")
   idl     '("TRUE" "FALSE")
+  java    '("true" "false" "null") ; technically "literals", not keywords
   pike    '("UNDEFINED")) ;; Not a keyword, but practically works as one.
 
 (c-lang-defconst c-primary-expr-kwds