format=flowed breakage
On 2007-03-20 10:27:04 +0100, Thomas Roessler wrote:
> As an aside, the code used to implement this (in the instance around
> line 816 of rfc2047.c) looks like an incredibly convoluted and
> inefficient way of saying something like this:
> if (islwsp (*s))
> {
> *d = ' ';
> d++;
> dlen--;
> }
> while (islwsp (*s) && *s)
> s++;
Yikes. This looks as follows in the message on the wire.
SP SP SP } CR LF
SP SP SP CR LF
SP SP SP while ...
The new format=flowed handler pulls these lines together and
therefore messes up the formatting of the code.
Can we please revert this change?
--
Thomas Roessler <roessler@xxxxxxxxxxxxxxxxxx>