diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-10-22 04:36:18 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-10-22 04:36:18 +0800 |
commit | fd56880083a4e45e52fea824348025c269da755f (patch) | |
tree | a7dadd7fb160846c8e2901024941ae09b08a591a /mail/em-format.c | |
parent | 1b201f8d76d4dbedfb1e3cf894bf5715a040d938 (diff) | |
download | gsoc2013-evolution-fd56880083a4e45e52fea824348025c269da755f.tar.gz gsoc2013-evolution-fd56880083a4e45e52fea824348025c269da755f.tar.zst gsoc2013-evolution-fd56880083a4e45e52fea824348025c269da755f.zip |
Put an <hr> between parts of a multipart.
2003-10-21 Jeffrey Stedfast <fejj@ximian.com>
* em-format.c (emf_multipart_mixed): Put an <hr> between parts of
a multipart.
svn path=/trunk/; revision=22969
Diffstat (limited to 'mail/em-format.c')
-rw-r--r-- | mail/em-format.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/mail/em-format.c b/mail/em-format.c index 2b8b70b14e..f39cafee0c 100644 --- a/mail/em-format.c +++ b/mail/em-format.c @@ -974,9 +974,8 @@ emf_multipart_mixed(EMFormat *emf, CamelStream *stream, CamelMimePart *part, con nparts = camel_multipart_get_number(mp); for (i = 0; i < nparts; i++) { - /* FIXME: separate part markers ... if (i != 0) - camel_stream_printf(stream, "<hr>\n");*/ + camel_stream_printf (stream, "<hr>\n"); part = camel_multipart_get_part(mp, i); em_format_part(emf, stream, part); @@ -996,7 +995,7 @@ emf_multipart_alternative(EMFormat *emf, CamelStream *stream, CamelMimePart *par return; } - /* as pre rfc, find the last part we know how to display */ + /* as per rfc, find the last part we know how to display */ nparts = camel_multipart_get_number(mp); for (i = 0; i < nparts; i++) { CamelMimePart *part = camel_multipart_get_part(mp, i); |