branch: externals/csharp-mode
commit 96563d1c0d327d3cb9b7a890c88ade9c17ca2729
Author: Theodor Thornhill <[email protected]>
Commit: Theodor Thornhill <[email protected]>
Add back in wrongly removed backtick
---
csharp-mode.el | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/csharp-mode.el b/csharp-mode.el
index f30c16c..c9f2b96 100644
--- a/csharp-mode.el
+++ b/csharp-mode.el
@@ -67,11 +67,11 @@
(c-add-language 'csharp-mode 'java-mode))
(c-lang-defconst c-make-mode-syntax-table
- csharp (lambda ()
- (let ((table (make-syntax-table)))
- (c-populate-syntax-table table)
- (modify-syntax-entry ?@ "_" table)
- table)))
+ csharp `(lambda ()
+ (let ((table (make-syntax-table)))
+ (c-populate-syntax-table table)
+ (modify-syntax-entry ?@ "_" table)
+ table)))
(c-lang-defconst c-identifier-syntax-modifications
csharp (append '((?@ . "w"))