branch: elpa/rust-mode
commit 5f5a428024e796e6a5a06c6044a15729c233cd93
Merge: 99c5571 6bc1540
Author: Micah Chalmer <[email protected]>
Commit: Micah Chalmer <[email protected]>
Merge pull request #88 from kw-udon/nested-comment
Support nested block comments
---
rust-mode.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rust-mode.el b/rust-mode.el
index a97e2eb..15c1be7 100644
--- a/rust-mode.el
+++ b/rust-mode.el
@@ -64,7 +64,7 @@
;; Comments
(modify-syntax-entry ?/ ". 124b" table)
- (modify-syntax-entry ?* ". 23" table)
+ (modify-syntax-entry ?* ". 23n" table)
(modify-syntax-entry ?\n "> b" table)
(modify-syntax-entry ?\^m "> b" table)