Skip to content

Commit

Permalink
Multiline bug fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
calculuswhiz committed Sep 14, 2015
1 parent 231dbaa commit 87b42e9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Assembly x86 AT&T.JSON-tmLanguage
Original file line number Diff line number Diff line change
Expand Up @@ -166,15 +166,15 @@
"name": "comment.assembly",
"match": "(#|//).*$"
},
{
"name": "comment.slashes",
"match": "^[ \\t]*/.*$"
},
{
"begin": "/\\*",
"end": "\\*/",
"name": "comment.multiline"
},
{
"name": "comment.slashes",
"match": "^[ \\t]*/.*$"
},
{ "name": "keyword.label.assembly",
"match": "((\\s+|^)([A-Za-z$_.0-9]|C-[BA])+[:])",
"comment": "Assembly label/symbols."
Expand Down
12 changes: 6 additions & 6 deletions Assembly x86 AT&T.tmLanguage
Original file line number Diff line number Diff line change
Expand Up @@ -316,12 +316,6 @@
<key>name</key>
<string>comment.assembly</string>
</dict>
<dict>
<key>match</key>
<string>^[ \t]*/.*$</string>
<key>name</key>
<string>comment.slashes</string>
</dict>
<dict>
<key>begin</key>
<string>/\*</string>
Expand All @@ -330,6 +324,12 @@
<key>name</key>
<string>comment.multiline</string>
</dict>
<dict>
<key>match</key>
<string>^[ \t]*/.*$</string>
<key>name</key>
<string>comment.slashes</string>
</dict>
<dict>
<key>comment</key>
<string>Assembly label/symbols.</string>
Expand Down

0 comments on commit 87b42e9

Please sign in to comment.