This commit is contained in:
Vadim Lopatin 2015-11-05 12:18:19 +03:00
parent 1db889fb53
commit 91d0f4e643
1 changed files with 1 additions and 1 deletions

View File

@ -557,7 +557,7 @@ class SimpleDSyntaxSupport : SyntaxSupport {
}
// fill with category
for (int i = tokenLine; i <= newLine; i++) {
for (int i = tokenLine; i <= newLine && i < lines.length; i++) {
int start = i > tokenLine ? 0 : tokenPos;
int end = i < newLine ? cast(int)lines[i].length : newPos;
for (int j = start; j < end; j++) {