aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-html-utils.h
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2001-05-17 06:30:44 +0800
committerDan Winship <danw@src.gnome.org>2001-05-17 06:30:44 +0800
commit23bcf6e31ad55d873c00ce3337057106ee471c47 (patch)
treeb8980647d3398bf0c66be6fb35fce2e17824dcb0 /e-util/e-html-utils.h
parent1849ce6cd24bf6d57dca4e34207e231fd03d8c02 (diff)
downloadgsoc2013-evolution-23bcf6e31ad55d873c00ce3337057106ee471c47.tar
gsoc2013-evolution-23bcf6e31ad55d873c00ce3337057106ee471c47.tar.gz
gsoc2013-evolution-23bcf6e31ad55d873c00ce3337057106ee471c47.tar.bz2
gsoc2013-evolution-23bcf6e31ad55d873c00ce3337057106ee471c47.tar.lz
gsoc2013-evolution-23bcf6e31ad55d873c00ce3337057106ee471c47.tar.xz
gsoc2013-evolution-23bcf6e31ad55d873c00ce3337057106ee471c47.tar.zst
gsoc2013-evolution-23bcf6e31ad55d873c00ce3337057106ee471c47.zip
add E_TEXT_TO_HTML_ESCAPE_8BIT to turn non-US-ASCII characters into "?"s.
* e-html-utils.c (e_text_to_html_full): add E_TEXT_TO_HTML_ESCAPE_8BIT to turn non-US-ASCII characters into "?"s. svn path=/trunk/; revision=9859
Diffstat (limited to 'e-util/e-html-utils.h')
-rw-r--r--e-util/e-html-utils.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/e-util/e-html-utils.h b/e-util/e-html-utils.h
index e95ca6e24a..d7c0c3b060 100644
--- a/e-util/e-html-utils.h
+++ b/e-util/e-html-utils.h
@@ -31,6 +31,7 @@
#define E_TEXT_TO_HTML_CONVERT_URLS (1 << 3)
#define E_TEXT_TO_HTML_MARK_CITATION (1 << 4)
#define E_TEXT_TO_HTML_CONVERT_ADDRESSES (1 << 5)
+#define E_TEXT_TO_HTML_ESCAPE_8BIT (1 << 6)
char *e_text_to_html_full (const char *input, unsigned int flags, guint32 color);
char *e_text_to_html (const char *input, unsigned int flags);