Format paragraphs properly - count the space between words.

This commit is contained in:
Pavel Janík 2014-12-06 21:26:52 +01:00
parent 4383319e4e
commit 83b81f6c8a
1 changed files with 1 additions and 1 deletions

View File

@ -459,7 +459,7 @@ std::string FormatParagraph(const std::string in, size_t width, size_t indent)
} }
// Append word // Append word
out << in.substr(ptr, endword - ptr); out << in.substr(ptr, endword - ptr);
col += endword - ptr; col += endword - ptr + 1;
ptr = endword; ptr = endword;
} }
return out.str(); return out.str();