From ebe75e422f87a95579ede56e9637462d083805a7 Mon Sep 17 00:00:00 2001 From: Not Zed Date: Mon, 24 May 2004 08:02:25 +0000 Subject: remove some debug. 2004-05-24 Not Zed * 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 --- mail/em-format-html.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'mail/em-format-html.c') 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, "%s", scan->newsgroup, scan->newsgroup); + g_string_append_printf(html, "%s", scan->newsgroup, scan->newsgroup); scan = scan->next; + if (scan) + g_string_append_printf(html, ", "); } camel_header_newsgroups_free(ng); -- cgit v1.2.3