diff options
author | Larry Ewing <lewing@ximian.com> | 2002-04-29 14:49:46 +0800 |
---|---|---|
committer | Larry Ewing <lewing@src.gnome.org> | 2002-04-29 14:49:46 +0800 |
commit | fa6c55ae45e80f123ff36096fa629c7bc9992f6b (patch) | |
tree | 36475904b2f3814e80072db28bd0ac4ab575f692 /mail/mail-tools.c | |
parent | 3b7f38cfce0dd9997623be790e37ed2b5f9c37e3 (diff) | |
download | gsoc2013-evolution-fa6c55ae45e80f123ff36096fa629c7bc9992f6b.tar.gz gsoc2013-evolution-fa6c55ae45e80f123ff36096fa629c7bc9992f6b.tar.zst gsoc2013-evolution-fa6c55ae45e80f123ff36096fa629c7bc9992f6b.zip |
use the html reply logic even for plain parts so that we can test out the
2002-04-29 Larry Ewing <lewing@ximian.com>
* mail-tools.c (mail_tool_quote_message): use the html reply logic
even for plain parts so that we can test out the new gtkhtml cite logic.
svn path=/trunk/; revision=16626
Diffstat (limited to 'mail/mail-tools.c')
-rw-r--r-- | mail/mail-tools.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mail/mail-tools.c b/mail/mail-tools.c index cf9dd484da..ba1de929dd 100644 --- a/mail/mail-tools.c +++ b/mail/mail-tools.c @@ -340,11 +340,15 @@ mail_tool_quote_message (CamelMimeMessage *message, const char *fmt, ...) gboolean want_plain; gchar *text; - want_plain = !mail_config_get_send_html (); contents = camel_medium_get_content_object (CAMEL_MEDIUM (message)); /* We pass "want_plain" for "cite", since if it's HTML, we'll * do the citing ourself below. */ + /* FIXME the citing logic has changed and we basically never want_plain + * to be true now, but I don't want to remove all that logic until I + * am sure --Larry + */ + want_plain = FALSE; text = mail_get_message_body (contents, want_plain, want_plain); /* Set the quoted reply text. */ |