[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/d-mode e4dd795cb1 2/5: Merge pull request #123 from ellxor
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/d-mode e4dd795cb1 2/5: Merge pull request #123 from ellxor/master |
Date: |
Tue, 26 Nov 2024 07:00:01 -0500 (EST) |
branch: elpa/d-mode
commit e4dd795cb12ca8333c2ca4dbb916d30d2879f07f
Merge: 9b1676d70e 85e74ce296
Author: Vladimir Panteleev <CyberShadow@users.noreply.github.com>
Commit: GitHub <noreply@github.com>
Merge pull request #123 from ellxor/master
Add missing builtin "aliased" types.
---
d-mode.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/d-mode.el b/d-mode.el
index f4d8b964b8..2cb7b8f17a 100644
--- a/d-mode.el
+++ b/d-mode.el
@@ -229,7 +229,8 @@ operators."
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" "__vector"))
+ "wchar" "dchar" "void" "string" "wstring" "dstring" "__vector"
+ "size_t" "ptrdiff_t" "noreturn"))
;; Keywords that can prefix normal declarations of identifiers.
;; Union of StorageClass, Attribute, and ParameterAttributes in D grammar.