diff options
author | Curtis McEnroe | 2018-09-13 15:11:05 -0400 |
---|---|---|
committer | Curtis McEnroe | 2018-09-13 15:11:05 -0400 |
commit | 311795bf412012ae42c0a4e4ba0afc55517f2bc8 (patch) | |
tree | 5eb287139a30574e2ae38318618a0baaddcfe6e5 /format.c | |
parent | 8a8eab89ff079b4a11ab9108b0a3f02fe6a638b1 (diff) |
Return a format->split even at the end of the string
Diffstat (limited to 'format.c')
-rw-r--r-- | format.c | 8 |
1 files changed, 7 insertions, 1 deletions
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]) { |