emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/csharp-mode da8eab4 290/459: const is a modifier, not a


From: ELPA Syncer
Subject: [elpa] externals/csharp-mode da8eab4 290/459: const is a modifier, not a type.
Date: Sun, 22 Aug 2021 13:59:46 -0400 (EDT)

branch: externals/csharp-mode
commit da8eab4292fcafd0dd8b1638dc3efa42ccf9b859
Author: Jostein Kjønigsen <jostein@kjonigsen.net>
Commit: Jostein Kjønigsen <jostein@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"))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]