diff options
author | Radek Doulik <rodo@helixcode.com> | 2001-01-09 18:45:22 +0800 |
---|---|---|
committer | Radek Doulik <rodo@src.gnome.org> | 2001-01-09 18:45:22 +0800 |
commit | 0cf53e3e5840295efe3462ad0b341d1f45640103 (patch) | |
tree | 841d020b3cb66e29777ac88ad8cf886cf26028ce | |
parent | 28a13853eba477bdfadfc286524913eb2c5cca31 (diff) | |
download | gsoc2013-evolution-0cf53e3e5840295efe3462ad0b341d1f45640103.tar gsoc2013-evolution-0cf53e3e5840295efe3462ad0b341d1f45640103.tar.gz gsoc2013-evolution-0cf53e3e5840295efe3462ad0b341d1f45640103.tar.bz2 gsoc2013-evolution-0cf53e3e5840295efe3462ad0b341d1f45640103.tar.lz gsoc2013-evolution-0cf53e3e5840295efe3462ad0b341d1f45640103.tar.xz gsoc2013-evolution-0cf53e3e5840295efe3462ad0b341d1f45640103.tar.zst gsoc2013-evolution-0cf53e3e5840295efe3462ad0b341d1f45640103.zip |
remove </center><p> (handle_text_plain): add <font
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
svn path=/trunk/; revision=7316
-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 */ |