From: Sergio Villar Senin Date: Fri, 5 Jun 2009 14:44:37 +0000 (+0200) Subject: Fixes NB#120969, signature separator misses trailing space X-Git-Tag: 3.0.17-rc11~1 X-Git-Url: http://git.maemo.org/git/?p=modest;a=commitdiff_plain;h=df8ae49c96a166a2287cf7488335acb847303a55 Fixes NB#120969, signature separator misses trailing space Do not ignore blank spaces at the end of the line when converting to HTML. In order to do that we use the non-breaking-space --- diff --git a/src/modest-text-utils.c b/src/modest-text-utils.c index a644625..6d0b050 100644 --- a/src/modest-text-utils.c +++ b/src/modest-text-utils.c @@ -435,7 +435,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_c (html, ' '); + g_string_append (html, " "); space_seen = FALSE; }