branch: externals/csharp-mode commit da8eab4292fcafd0dd8b1638dc3efa42ccf9b859 Author: Jostein Kjønigsen <jost...@kjonigsen.net> Commit: Jostein Kjønigsen <jost...@kjonigsen.net>
const is a modifier, not a type. --- csharp-mode.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/csharp-mode.el b/csharp-mode.el index 6e3321d..d943e97 100644 --- a/csharp-mode.el +++ b/csharp-mode.el @@ -76,7 +76,7 @@ (c-lang-defconst c-primitive-type-kwds csharp '("bool" "byte" "sbyte" "char" "decimal" "double" "float" "int" "uint" - "long" "ulong" "short" "ushort" "void" "object" "string" "const" "var")) + "long" "ulong" "short" "ushort" "void" "object" "string" "var")) (c-lang-defconst c-return-kwds csharp '("return")) @@ -116,7 +116,7 @@ "public" "partial" "internal" "readonly" "static" "event" "transient" "volatile" "sealed" "ref" "out" "virtual" "implicit" "explicit" "fixed" "override" "params" "async" "await" "extern" "unsafe" - "get" "set" "this")) + "get" "set" "this" "const")) (c-lang-defconst c-other-decl-kwds csharp '("using"))