From ed6b1c4256da5888d8db00ac587a69c3b53aa240 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Thu, 21 May 2015 11:04:47 +0200 Subject: [PATCH] fix, todo background tool, last description field char not included --- cetodo/cetodo.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cetodo/cetodo.d b/cetodo/cetodo.d index c179b919..db6ef2b3 100644 --- a/cetodo/cetodo.d +++ b/cetodo/cetodo.d @@ -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);