diff options
| author | Micah Chalmer <micah@micahchalmer.net> | 2015-08-14 19:38:29 -0400 |
|---|---|---|
| committer | Micah Chalmer <micah@micahchalmer.net> | 2015-08-14 19:38:29 -0400 |
| commit | 5f5a428024e796e6a5a06c6044a15729c233cd93 (patch) | |
| tree | 2765ce61507ccaf8f6a5f026e7519b41dff369d4 | |
| parent | 99c5571670068e05da40d05f6215e18fa9043eed (diff) | |
| parent | 6bc1540b39c0d6c21052392aa3cb5f5a8781448d (diff) | |
| download | rust-mode-5f5a428024e796e6a5a06c6044a15729c233cd93.tar.gz | |
Merge pull request #88 from kw-udon/nested-comment
Support nested block comments
| -rw-r--r-- | rust-mode.el | 2 |
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) |
