diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 3 | ||||
-rw-r--r-- | mail/mail-format.c | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 71250f1db6..b11ba47303 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,6 +1,9 @@ 2001-01-09 Radek Doulik <rodo@helixcode.com> * mail-format.c (write_headers): remove </center><p> + (handle_text_plain): add <font size=\"-3\"> </font><br> before + msg text + (handle_text_plain_flowed): ditto 2001-01-09 Jeffrey Stedfast <fejj@helixcode.com> diff --git a/mail/mail-format.c b/mail/mail-format.c index 7ed0798091..1bfe856ba0 100644 --- a/mail/mail-format.c +++ b/mail/mail-format.c @@ -706,7 +706,7 @@ handle_text_plain (CamelMimePart *part, const char *mime_type, if (format && !g_strcasecmp (format, "flowed")) return handle_text_plain_flowed (text, md); - mail_html_write (md->html, md->stream, "\n<!-- text/plain -->\n"); + mail_html_write (md->html, md->stream, "\n<!-- text/plain -->\n<font size=\"-3\"> </font><br>\n"); p = text; while (p) { @@ -752,7 +752,7 @@ handle_text_plain_flowed (char *buf, MailDisplay *md) gboolean br_pending = FALSE; mail_html_write (md->html, md->stream, - "\n<!-- text/plain, flowed -->\n<tt>\n"); + "\n<!-- text/plain, flowed -->\n<font size=\"-3\"> </font><br>\n<tt>\n"); for (line = buf; *line; line = eol + 1) { /* Process next line */ |