aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-format-html.c
diff options
context:
space:
mode:
authorPaul Bolle <pebolle@tiscali.nl>2008-08-07 12:16:09 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2008-08-07 12:16:09 +0800
commit2aaba13c9446ef82f37cca3d763b50c271b19bd5 (patch)
tree5c8eb480acff8156583be649c1daaa5343782217 /mail/em-format-html.c
parent6de863cd0ea0d2971b6097aa21cd87eb6dbc32f1 (diff)
downloadgsoc2013-evolution-2aaba13c9446ef82f37cca3d763b50c271b19bd5.tar
gsoc2013-evolution-2aaba13c9446ef82f37cca3d763b50c271b19bd5.tar.gz
gsoc2013-evolution-2aaba13c9446ef82f37cca3d763b50c271b19bd5.tar.bz2
gsoc2013-evolution-2aaba13c9446ef82f37cca3d763b50c271b19bd5.tar.lz
gsoc2013-evolution-2aaba13c9446ef82f37cca3d763b50c271b19bd5.tar.xz
gsoc2013-evolution-2aaba13c9446ef82f37cca3d763b50c271b19bd5.tar.zst
gsoc2013-evolution-2aaba13c9446ef82f37cca3d763b50c271b19bd5.zip
** Fix for bug #546668
2008-08-06 Paul Bolle <pebolle@tiscali.nl> ** Fix for bug #546668 * mail/em-format-html.c: Drop a (pointless) define used only once. * mail/em-format-html-display.c: Drop one unused define. svn path=/trunk/; revision=35920
Diffstat (limited to 'mail/em-format-html.c')
-rw-r--r--mail/em-format-html.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/mail/em-format-html.c b/mail/em-format-html.c
index f2c0a102b8..bb2d176b6e 100644
--- a/mail/em-format-html.c
+++ b/mail/em-format-html.c
@@ -84,7 +84,6 @@
#define d(x)
-#define EFH_TABLE_OPEN "<table>"
#define EFM_MESSAGE_START_ANAME "evolution#message#start"
#define EFH_MESSAGE_START "<A name=\"" EFM_MESSAGE_START_ANAME "\"></A>"
@@ -2101,7 +2100,7 @@ static void efh_format_source(EMFormat *emf, CamelStream *stream, CamelMimePart
camel_stream_filter_add(filtered_stream, html_filter);
camel_object_unref(html_filter);
- camel_stream_write_string((CamelStream *)stream, EFH_TABLE_OPEN "<tr><td><tt>");
+ camel_stream_write_string((CamelStream *)stream, "<table><tr><td><tt>");
em_format_format_text(emf, (CamelStream *)filtered_stream, dw);
camel_object_unref(filtered_stream);