mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-11 18:31:17 -08:00
(c-constant-kwds): Add java: null, true, false.
This commit is contained in:
parent
00d670807e
commit
fbd4de656d
2 changed files with 7 additions and 1 deletions
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue