branch: externals/csharp-mode commit b4b9d61b571a9c25cfc857e095d2a97c862d1bed Author: jtbm37 <jean@tbm.email> Commit: jtbm37 <jean@tbm.email>
Add volatile to imenu --- csharp-mode.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/csharp-mode.el b/csharp-mode.el index 151d74b..695c599 100644 --- a/csharp-mode.el +++ b/csharp-mode.el @@ -1873,8 +1873,8 @@ to the beginning of the prior namespace. (list "field" (concat bol access-modifier-list "+" - ;; fields can be readonly/const - "\\(?:" (regexp-opt '("readonly" "const")) space "\\)?" + ;; fields can be readonly/const/volatile + "\\(?:" (regexp-opt '("readonly" "const" "volatile")) space "\\)?" "\\(" return-type space generic-identifier