aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-format-html.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-05-24 16:02:25 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-05-24 16:02:25 +0800
commitebe75e422f87a95579ede56e9637462d083805a7 (patch)
tree1da42eab5c073160b2e0fd93979278452aa7985b /mail/em-format-html.c
parentaae6dd93d5c32292b78b9ea59f7ba3d66e0b65e3 (diff)
downloadgsoc2013-evolution-ebe75e422f87a95579ede56e9637462d083805a7.tar
gsoc2013-evolution-ebe75e422f87a95579ede56e9637462d083805a7.tar.gz
gsoc2013-evolution-ebe75e422f87a95579ede56e9637462d083805a7.tar.bz2
gsoc2013-evolution-ebe75e422f87a95579ede56e9637462d083805a7.tar.lz
gsoc2013-evolution-ebe75e422f87a95579ede56e9637462d083805a7.tar.xz
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.c4
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);