diff options
-rw-r--r-- | composer/ChangeLog | 5 | ||||
-rw-r--r-- | composer/e-msg-composer.c | 7 |
2 files changed, 5 insertions, 7 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index e5f946db29..9a325409bc 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,8 @@ +2002-06-19 Radek Doulik <rodo@ximian.com> + + * e-msg-composer.c (get_signature_html): don't convert text to + html twice + 2002-06-10 Radek Doulik <rodo@ximian.com> * e-msg-composer.c (signature_cb): added "Set as default" menu diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c index 39997ce7e5..c4f72db93a 100644 --- a/composer/e-msg-composer.c +++ b/composer/e-msg-composer.c @@ -892,13 +892,6 @@ get_signature_html (EMsgComposer *composer) /* printf ("text: %s\n", text); */ if (text) { - if (!format_html) { - gchar *tmp; - - tmp = e_text_to_html (text, E_TEXT_TO_HTML_CONVERT_SPACES); - g_free (text); - text = tmp; - } /* The signature dash convention ("-- \n") is specified in the * "Son of RFC 1036": http://www.chemie.fu-berlin.de/outerspace/netnews/son-of-1036.html, * section 4.3.2. |