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)
|
while (!text.empty)
|
||||||
{
|
{
|
||||||
auto front = text.front;
|
auto front = text.front;
|
||||||
|
identifier ~= front;
|
||||||
text.popFront;
|
text.popFront;
|
||||||
if (front != ':') identifier ~= front;
|
if (front == ':')
|
||||||
else
|
|
||||||
{
|
{
|
||||||
if (identifier.length) fields = identifier;
|
if (identifier.length) fields = identifier;
|
||||||
isWellFormed = (text.length > 0);
|
isWellFormed = (text.length > 0);
|
||||||
|
|
Loading…
Reference in New Issue