From 311795bf412012ae42c0a4e4ba0afc55517f2bc8 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Thu, 13 Sep 2018 15:11:05 -0400 Subject: Return a format->split even at the end of the string --- format.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'format.c') diff --git a/format.c b/format.c index 30b287e..b9cd8b1 100644 --- a/format.c +++ b/format.c @@ -66,7 +66,13 @@ static const wchar_t Stops[] = { bool formatParse(struct Format *format, const wchar_t *split) { format->str += format->len; - if (!format->str[0]) return false; + if (!format->str[0]) { + if (split == format->str && !format->split) { + format->split = true; + return true; + } + return false; + } const wchar_t *init = format->str; switch (format->str[0]) { -- cgit 1.4.1