branch: elpa/d-mode
commit 86a86ddcec9855a5b20c941c5f84df69ed9b36ab
Merge: 600c70b 438cf53
Author: Russel Winder <[email protected]>
Commit: Russel Winder <[email protected]>
Merge pull request #68 from sdilts/master
fixed missing keyword "idouble"
---
d-mode.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/d-mode.el b/d-mode.el
index ccf398b..7318b37 100644
--- a/d-mode.el
+++ b/d-mode.el
@@ -211,7 +211,7 @@ operators."
(c-lang-defconst c-primitive-type-kwds
d '("bit" "bool" "byte" "ubyte" "char" "delegate" "double" "float"
"function" "int" "long" "short" "uint" "ulong" "ushort"
- "cent" "ucent" "real" "ireal" "ifloat" "creal" "cfloat" "cdouble"
+ "cent" "ucent" "real" "ireal" "idouble" "ifloat" "creal" "cfloat"
"cdouble"
"wchar" "dchar" "void" "string" "wstring" "dstring"))
;; Keywords that can prefix normal declarations of identifiers
@@ -660,4 +660,4 @@ and compile-time parameters in function calls."
(provide 'd-mode)
-;;; d-mode.el ends here
+;;; d-mode.el ends here
\ No newline at end of file