aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-display.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-12-12 00:52:40 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-12-12 00:52:40 +0800
commitcf5946baf722af0e701284a807ae3b3642d8582b (patch)
tree94cfd4c78ec3457746de863b4531b69e729bb27d /mail/mail-display.c
parent8d8578a64dda64c7bc4e05d687026f977e370aa4 (diff)
downloadgsoc2013-evolution-cf5946baf722af0e701284a807ae3b3642d8582b.tar
gsoc2013-evolution-cf5946baf722af0e701284a807ae3b3642d8582b.tar.gz
gsoc2013-evolution-cf5946baf722af0e701284a807ae3b3642d8582b.tar.bz2
gsoc2013-evolution-cf5946baf722af0e701284a807ae3b3642d8582b.tar.lz
gsoc2013-evolution-cf5946baf722af0e701284a807ae3b3642d8582b.tar.xz
gsoc2013-evolution-cf5946baf722af0e701284a807ae3b3642d8582b.tar.zst
gsoc2013-evolution-cf5946baf722af0e701284a807ae3b3642d8582b.zip
New function to handle a lot of the filtering/etc that was done in
2002-12-11 Jeffrey Stedfast <fejj@ximian.com> * mail-format.c (mail_format_data_wrapper_write_to_stream): New function to handle a lot of the filtering/etc that was done in mail_format_get_data_wrapper_text(). This is the first step toward getting rid of e-text-to-html crap and using my tohtml stream filter instead. (mail_format_get_data_wrapper_text): Use the new function. (mail_format_raw_message): Use camel streams to write the content to gtkhtml rather than using get_data_wrapper_text() and then converting that to html and then writing it to the gtkhtml stream. svn path=/trunk/; revision=19098
Diffstat (limited to 'mail/mail-display.c')
-rw-r--r--mail/mail-display.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-display.c b/mail/mail-display.c
index 88fb1dc6eb..f4b1ce61f1 100644
--- a/mail/mail-display.c
+++ b/mail/mail-display.c
@@ -1659,7 +1659,7 @@ mail_text_write (GtkHTML *html, GtkHTMLStream *stream, MailDisplay *md, CamelMim
if (!printing)
flags |= E_TEXT_TO_HTML_CONVERT_URLS | E_TEXT_TO_HTML_CONVERT_ADDRESSES;
- if (mail_config_get_citation_highlight () && ! printing)
+ if (!printing && mail_config_get_citation_highlight ())
flags |= E_TEXT_TO_HTML_MARK_CITATION;
htmltext = e_text_to_html_full (text, flags, mail_config_get_citation_color ());