branch: elpa/d-mode
commit a97c92ced57224287a84e7fc48ba9aac6b2afc08
Author: Vladimir Panteleev <[email protected]>
Commit: Vladimir Panteleev <[email protected]>
d-mode: Remove 'bit' from keyword list.
It was a basic type in 0.x, but has been removed a very long time ago.
---
d-mode.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/d-mode.el b/d-mode.el
index 89ef834..94a5c98 100644
--- a/d-mode.el
+++ b/d-mode.el
@@ -7,7 +7,7 @@
;; Maintainer: Russel Winder <[email protected]>
;; Vladimir Panteleev <[email protected]>
;; Created: March 2007
-;; Version: 201610111956
+;; Version: 201610221417
;; Keywords: D programming language emacs cc-mode
;;;; NB Version number is date and time yyyymmddhhMM UTC.
@@ -238,7 +238,7 @@ The expression is added to `compilation-error-regexp-alist'
and
;; Built-in basic types
(c-lang-defconst c-primitive-type-kwds
- d '("bit" "bool" "byte" "ubyte" "char" "delegate" "double" "float"
+ d '("bool" "byte" "ubyte" "char" "delegate" "double" "float"
"function" "int" "long" "short" "uint" "ulong" "ushort"
"cent" "ucent" "real" "ireal" "idouble" "ifloat" "creal" "cfloat"
"cdouble"
"wchar" "dchar" "void" "string" "wstring" "dstring"))