Skip to content

Commit 96563d1

Browse files
committed
Add back in wrongly removed backtick
1 parent 299d3f1 commit 96563d1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

csharp-mode.el

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,11 @@
6767
(c-add-language 'csharp-mode 'java-mode))
6868

6969
(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)))
70+
csharp `(lambda ()
71+
(let ((table (make-syntax-table)))
72+
(c-populate-syntax-table table)
73+
(modify-syntax-entry ?@ "_" table)
74+
table)))
7575

7676
(c-lang-defconst c-identifier-syntax-modifications
7777
csharp (append '((?@ . "w"))

0 commit comments

Comments
 (0)