Skip to content

Commit

Permalink
Merge pull request #3 from dchenbecker/master
Browse files Browse the repository at this point in the history
Fix comment handling for //+ style comment lines
  • Loading branch information
non committed Sep 21, 2012
2 parents ee8e092 + 7118e5a commit df053b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scala2.el
Expand Up @@ -127,10 +127,10 @@
(modify-syntax-entry ?\_ "_" st)
(modify-syntax-entry ?\. "." st)

(modify-syntax-entry ?/ ". 124nb" st)
(modify-syntax-entry ?/ ". 124b" st)
(modify-syntax-entry ?* ". 23n" st)
(modify-syntax-entry ?\n "> bn" st)
(modify-syntax-entry ?\r "> bn" st)
(modify-syntax-entry ?\n "> b" st)
(modify-syntax-entry ?\r "> b" st)
st))

(define-derived-mode scala2
Expand Down

0 comments on commit df053b7

Please sign in to comment.