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 | |
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
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/em-format.c | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index ce8d617365..826ee496e6 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2003-10-21 Jeffrey Stedfast <fejj@ximian.com> + + * em-format.c (emf_multipart_mixed): Put an <hr> between parts of + a multipart. + 2003-10-21 Not Zed <NotZed@Ximian.com> * mail-component.c (emc_popup_properties): implement. 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); |