round and round we go

This commit is contained in:
Andrew Pamment 2018-02-28 09:46:18 +10:00
parent 788e0a9425
commit c6b8062782

View File

@ -773,9 +773,9 @@ static char *www_wordwrap(char *content, int cutoff) {
last_space = &ret[at];
}
at++;
} else if (content[i] == '>' && line_count < 4) {
if (content[i] == '>' && line_count < 4) {
quote_line = 1;
ret[at++] = content[i];
}
} else {
ret[at++] = content[i];
}