diff options
author | Not Zed <NotZed@Ximian.com> | 2004-05-24 16:02:25 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-05-24 16:02:25 +0800 |
commit | ebe75e422f87a95579ede56e9637462d083805a7 (patch) | |
tree | 1da42eab5c073160b2e0fd93979278452aa7985b /mail/em-format-html.c | |
parent | aae6dd93d5c32292b78b9ea59f7ba3d66e0b65e3 (diff) | |
download | gsoc2013-evolution-ebe75e422f87a95579ede56e9637462d083805a7.tar.gz gsoc2013-evolution-ebe75e422f87a95579ede56e9637462d083805a7.tar.zst gsoc2013-evolution-ebe75e422f87a95579ede56e9637462d083805a7.zip |
remove some debug.
2004-05-24 Not Zed <NotZed@Ximian.com>
* em-folder-view.c (emfv_enable_menus): remove some debug.
* em-format-html.c (efh_format_header): output commas between
newsgroups, and also append_printf.
svn path=/trunk/; revision=26060
Diffstat (limited to 'mail/em-format-html.c')
-rw-r--r-- | mail/em-format-html.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mail/em-format-html.c b/mail/em-format-html.c index 684d60aed6..824d3b115d 100644 --- a/mail/em-format-html.c +++ b/mail/em-format-html.c @@ -1576,8 +1576,10 @@ efh_format_header(EMFormat *emf, CamelStream *stream, CamelMedium *part, struct html = g_string_new(""); scan = ng; while (scan) { - g_string_printf(html, "<a href=\"news:%s\">%s</a>", scan->newsgroup, scan->newsgroup); + g_string_append_printf(html, "<a href=\"news:%s\">%s</a>", scan->newsgroup, scan->newsgroup); scan = scan->next; + if (scan) + g_string_append_printf(html, ", "); } camel_header_newsgroups_free(ng); |