Skip to content

Commit

Permalink
Removed single quotes from multiline comment regex, because they caus…
Browse files Browse the repository at this point in the history
…ed comment coloring to cease at the first single quote. (I'm not sure why they were there at all, but anyone who knows should feel free to enlighten me!)

git-svn-id: http://svn.textmate.org/trunk/Bundles/Io.tmbundle@2787 dfb7d73b-c2ec-0310-8fea-fb051d288c6d
  • Loading branch information
Paul Bissex committed Feb 27, 2006
1 parent 85d667a commit 202f6b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Syntaxes/Io.plist
Expand Up @@ -38,9 +38,9 @@
</dict>
<dict>
<key>begin</key>
<string>/\*|'</string>
<string>/\*</string>
<key>end</key>
<string>'|\*/</string>
<string>\*/</string>
<key>name</key>
<string>comment.block.io</string>
</dict>
Expand Down

0 comments on commit 202f6b2

Please sign in to comment.