summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Chalmer <micah@micahchalmer.net>2015-08-14 19:38:29 -0400
committerMicah Chalmer <micah@micahchalmer.net>2015-08-14 19:38:29 -0400
commit5f5a428024e796e6a5a06c6044a15729c233cd93 (patch)
tree2765ce61507ccaf8f6a5f026e7519b41dff369d4
parent99c5571670068e05da40d05f6215e18fa9043eed (diff)
parent6bc1540b39c0d6c21052392aa3cb5f5a8781448d (diff)
downloadrust-mode-5f5a428024e796e6a5a06c6044a15729c233cd93.tar.gz
Merge pull request #88 from kw-udon/nested-comment
Support nested block comments
-rw-r--r--rust-mode.el2
1 files changed, 1 insertions, 1 deletions
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)