Skip to content

Commit 6e9d1f6

Browse files
authored
Merge pull request #266 from jcs-PR/tests/compile
tests(makefile): Add compile to CI test
2 parents 772128c + 7249271 commit 6e9d1f6

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

csharp-mode.el

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -66,15 +66,15 @@
6666
declaration."))
6767

6868
(eval-and-compile
69-
(c-add-language 'csharp-mode 'java-mode))
70-
71-
(defun csharp--make-mode-syntax-table ()
72-
(let ((table (make-syntax-table)))
73-
(c-populate-syntax-table table)
74-
(modify-syntax-entry ?@ "_" table)
75-
table))
76-
(defvar csharp--make-mode-syntax-table #'csharp--make-mode-syntax-table
77-
"Workaround for Emacs bug#57065.")
69+
(c-add-language 'csharp-mode 'java-mode)
70+
71+
(defun csharp--make-mode-syntax-table ()
72+
(let ((table (make-syntax-table)))
73+
(c-populate-syntax-table table)
74+
(modify-syntax-entry ?@ "_" table)
75+
table))
76+
(defvar csharp--make-mode-syntax-table #'csharp--make-mode-syntax-table
77+
"Workaround for Emacs bug#57065."))
7878

7979
(c-lang-defconst c-make-mode-syntax-table
8080
csharp #'csharp--make-mode-syntax-table)

makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ package:
1010

1111
build: package
1212
$(EASK) install
13+
$(EASK) compile
1314

1415
test:
1516
@echo "Testing..."

0 commit comments

Comments
 (0)