# HG changeset patch # User Ben Schmidt # Date 1330533273 -39600 # Node ID 18fa95bcf19c0ceb8044f59a73433211310e9e32 # Parent cefb04b9f9bc4ae5e5d3cc861bafd6dbb8f3a06f Don't join lines with spaces when there's only indent without content. diff -r cefb04b9f9bc -r 18fa95bcf19c src/prepstdreply.c --- a/src/prepstdreply.c Wed Feb 29 17:39:28 2012 +1100 +++ b/src/prepstdreply.c Thu Mar 01 03:34:33 2012 +1100 @@ -1224,7 +1224,8 @@ if (*prev == '\0') { tmp = mystrdup(pos); } else { - if (txt->wrapmode == WRAP_WORD) { + if (txt->wrapmode == WRAP_WORD && + len > wrapindentlen) { tmp = concatstr(3, prev, " ", pos); len++; width++;