branch: elpa/rust-mode
commit 6bc1540b39c0d6c21052392aa3cb5f5a8781448d
Author: Keiichi Watanabe <[email protected]>
Commit: Keiichi Watanabe <[email protected]>
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 e451dfa..c058fe4 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)