Merge pull request #30 from MrSmith33/master

Fix appending string to dchar[]
This commit is contained in:
Vadim Lopatin 2015-02-17 09:00:39 +03:00
commit e589569941
1 changed files with 3 additions and 3 deletions

View File

@ -297,7 +297,7 @@ class SimpleDSyntaxHighlighter : SyntaxHighlighter {
res ~= ch;
x = newX;
}
res ~= "//";
res ~= "//"d;
x += 2;
} else {
res ~= ch;
@ -306,7 +306,7 @@ class SimpleDSyntaxHighlighter : SyntaxHighlighter {
} else {
if (!commented && x == commentX) {
commented = true;
res ~= "//";
res ~= "//"d;
res ~= ch;
x += 3;
} else {
@ -318,7 +318,7 @@ class SimpleDSyntaxHighlighter : SyntaxHighlighter {
if (!commented) {
for (; x < commentX; x++)
res ~= ' ';
res ~= "//";
res ~= "//"d;
}
return cast(dstring)res;
}