diff options
author | Radek Doulik <rodo@ximian.com> | 2002-06-20 03:55:04 +0800 |
---|---|---|
committer | Radek Doulik <rodo@src.gnome.org> | 2002-06-20 03:55:04 +0800 |
commit | 4c9a2140b45ed6602a43c42a0d156407096d7e40 (patch) | |
tree | 05d22460b4b2e97871483664e50de2912304202d /composer/e-msg-composer.c | |
parent | 092b3ef2ab9d971c0290126d674c604a6b270e00 (diff) | |
download | gsoc2013-evolution-4c9a2140b45ed6602a43c42a0d156407096d7e40.tar.gz gsoc2013-evolution-4c9a2140b45ed6602a43c42a0d156407096d7e40.tar.zst gsoc2013-evolution-4c9a2140b45ed6602a43c42a0d156407096d7e40.zip |
don't convert text to html twice
2002-06-19 Radek Doulik <rodo@ximian.com>
* e-msg-composer.c (get_signature_html): don't convert text to
html twice
svn path=/trunk/; revision=17239
Diffstat (limited to 'composer/e-msg-composer.c')
-rw-r--r-- | composer/e-msg-composer.c | 7 |
1 files changed, 0 insertions, 7 deletions
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. |