# HG changeset patch # User Ben Schmidt # Date 1330533770 -39600 # Node ID eb14ea6e4f21afac377954c0b9c9a7ebfd1104dd # Parent 18fa95bcf19c0ceb8044f59a73433211310e9e32 Don't stop wrapping when skipping text (in a failed conditional). diff -r 18fa95bcf19c -r eb14ea6e4f21 src/prepstdreply.c --- a/src/prepstdreply.c Thu Mar 01 03:34:33 2012 +1100 +++ b/src/prepstdreply.c Thu Mar 01 03:42:50 2012 +1100 @@ -1209,7 +1209,8 @@ *pos = '\0'; pos = line; while (*pos == ' ' || *pos == '\t') pos++; - if (*pos == '\r' || *pos == '\n' || *pos == '\0') { + if ((*pos == '\r' || *pos == '\n' || *pos == '\0') && + txt->skip == NULL) { /* Empty/white line; stop wrapping, finish the last line and save the empty/white line for later. */