From f334560f1bcf72748987e6a35f17ad14b31e80e6 Mon Sep 17 00:00:00 2001 From: Lucas Maneos Date: Mon, 30 Nov 2009 12:29:17 +0100 Subject: [PATCH] Insert the trailing space of signature separator as " " This improves the parsing of signatures by other email clients https://bugs.maemo.org/show_bug.cgi?id=3941 Fixes NB#120969 --- src/modest-text-utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modest-text-utils.c b/src/modest-text-utils.c index cd209a8..2fa0e3b 100644 --- a/src/modest-text-utils.c +++ b/src/modest-text-utils.c @@ -500,7 +500,7 @@ modest_text_utils_convert_buffer_to_html_start (GString *html, const gchar *data guchar kar = data[i]; if (space_seen && kar != ' ') { - g_string_append (html, " "); + g_string_append (html, " "); space_seen = FALSE; } -- 1.7.9.5