Small cleanup patch for nsMsgCompUtils.cpp in the work on bug 16398 (format=flowed). - r: rhp (external contribution)

This commit is contained in:
rhp%netscape.com 2000-02-06 17:24:40 +00:00
parent d193b47ad1
commit b15b4bdc38

View File

@ -813,11 +813,13 @@ mime_generate_attachment_headers (const char *type, const char *encoding,
prefs->GetBoolPref("mail.send_plaintext_flowed", &sendFlowed);
if (sendFlowed)
PUSH_STRING ("; format=flowed");
else
{
// This is the same as no format at all.
PUSH_STRING ("; format=fixed");
}
// else
// {
// Don't add a markup. Could use
// PUSH_STRING ("; format=fixed");
// but it is equivalent to nothing at all and we do want
// to save bandwidth. Don't we?
// }
}
}