Skip to content

Commit 9a1ddba

Browse files
committed
Merge branch 'jtbm37/master'
2 parents 879beb4 + b4b9d61 commit 9a1ddba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

csharp-mode.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1200,7 +1200,7 @@ Currently handled:
12001200
;; instead of create one.
12011201
(c-lang-defconst c-type-modifier-kwds
12021202
;; EMCA-344, S?
1203-
csharp '("readonly" "const"))
1203+
csharp '("readonly" "const" "volatile"))
12041204

12051205

12061206
;; Tue, 20 Apr 2010 16:02
@@ -1873,8 +1873,8 @@ to the beginning of the prior namespace.
18731873
(list "field"
18741874
(concat bol
18751875
access-modifier-list "+"
1876-
;; fields can be readonly/const
1877-
"\\(?:" (regexp-opt '("readonly" "const")) space "\\)?"
1876+
;; fields can be readonly/const/volatile
1877+
"\\(?:" (regexp-opt '("readonly" "const" "volatile")) space "\\)?"
18781878
return-type space
18791879
"\\("
18801880
generic-identifier

0 commit comments

Comments
 (0)