summaryrefslogtreecommitdiff
path: root/rust-mode.el
diff options
context:
space:
mode:
authorKeiichi Watanabe <udon.watanabe@gmail.com>2015-07-24 19:35:16 +0900
committerKeiichi Watanabe <udon.watanabe@gmail.com>2015-07-24 19:35:16 +0900
commit6bc1540b39c0d6c21052392aa3cb5f5a8781448d (patch)
tree1b95b6d6e3e7956f18c283c6f736caf761410378 /rust-mode.el
parentee564d555f53c94c7a36ab1ef1d9df2b7d6f3bf8 (diff)
downloadrust-mode-6bc1540b39c0d6c21052392aa3cb5f5a8781448d.tar.gz
Support nested block comments
Diffstat (limited to 'rust-mode.el')
-rw-r--r--rust-mode.el2
1 files changed, 1 insertions, 1 deletions
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)