We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 299d3f1 commit 96563d1Copy full SHA for 96563d1
csharp-mode.el
@@ -67,11 +67,11 @@
67
(c-add-language 'csharp-mode 'java-mode))
68
69
(c-lang-defconst c-make-mode-syntax-table
70
- csharp (lambda ()
71
- (let ((table (make-syntax-table)))
72
- (c-populate-syntax-table table)
73
- (modify-syntax-entry ?@ "_" table)
74
- table)))
+ csharp `(lambda ()
+ (let ((table (make-syntax-table)))
+ (c-populate-syntax-table table)
+ (modify-syntax-entry ?@ "_" table)
+ table)))
75
76
(c-lang-defconst c-identifier-syntax-modifications
77
csharp (append '((?@ . "w"))
0 commit comments