mirror of https://gitlab.com/basile.b/dexed.git
fix, todo background tool, last description field char not included
This commit is contained in:
parent
6136419676
commit
ed6b1c4256
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue