From: Sertaç Ö. Yıldız Date: Fri, 15 Jun 2007 01:17:41 +0000 (-0700) Subject: flowed: consider a single space as a hard line break. Closes #2906 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dee18e32bd80e3acf7239f64fdfa33e7aad592d2;p=neomutt flowed: consider a single space as a hard line break. Closes #2906 --- diff --git a/rfc3676.c b/rfc3676.c index ebd9543f5..d6b0bad49 100644 --- a/rfc3676.c +++ b/rfc3676.c @@ -211,7 +211,7 @@ int rfc3676_handler (BODY * a, STATE * s) /* we're here when last space removed because of DelSp was * the last space and there isn't more -> done */ - if ((buf_len - buf_off) < 0) + if ((buf_len - buf_off) <= 0) { print_flowed_line (curline, s, quotelevel); *curline = '\0';