fix, todo background tool, last description field char not included

This commit is contained in:
Basile Burg 2015-05-21 11:04:47 +02:00
parent 6136419676
commit ed6b1c4256
1 changed files with 2 additions and 2 deletions

View File

@ -201,9 +201,9 @@ void main(string[] args)
while (!text.empty)
{
auto front = text.front;
identifier ~= front;
text.popFront;
if (front != ':') identifier ~= front;
else
if (front == ':')
{
if (identifier.length) fields = identifier;
isWellFormed = (text.length > 0);