Re: [Mutt] #2906: space stuffed empty lines are not displayed with f=f
#2906: space stuffed empty lines are not displayed with f=f
Changes (by mvrable):
* status: closed => reopened
* resolution: fixed =>
Comment:
I still occasionally see some trouble with format=flowed text. In
particular, a line in the message consisting simply of "> " (a quoted and
space-stuffed blank line) is treated by mutt as a flowed line, while my
reading of RFC 3676 is that it should be considered a fixed line.
I think the key fix is that in {{{rfc3676_handler}}} the line
{{{
fixed = buf_len == 0 || buf[buf_len - 1] != ' ' || sigsep;
}}}
should read instead
{{{
fixed = buf_len == buf_off || buf[buf_len - 1] != ' ' || sigsep;
}}}
so that a line is considered fixed if it is blank after stripping out
quoting and space-stuffing.
--
Ticket URL: <http://dev.mutt.org/trac/ticket/2906#comment:3>