branch: elpa/kotlin-mode
commit 0e4bafb31d1fc2a0a420a521c2723d5526646c0b
Merge: 8e6dd578f2 9fba76ff2b
Author: Gregg Hernandez <[email protected]>
Commit: GitHub <[email protected]>
Merge pull request #57 from taku0/fix-backquote
Fix highlighting of backquotes
---
kotlin-mode-lexer.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kotlin-mode-lexer.el b/kotlin-mode-lexer.el
index 2548ff06af..29576be8e7 100644
--- a/kotlin-mode-lexer.el
+++ b/kotlin-mode-lexer.el
@@ -155,7 +155,7 @@ the scan stops where the level becomes zero."
;; the identifier are not a escape-syntax characters.
(put-text-property (1+ start) (1- (point))
'syntax-table
- (string-to-syntax "|")))))
+ (string-to-syntax "w")))))
((equal "//" (match-string-no-properties 0))
(goto-char (match-beginning 0))