aboutsummaryrefslogtreecommitdiff
path: root/src/quote_fmt_parse.y
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-02-25 10:00:41 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-02-25 10:00:41 +0000
commit2a47b946a59bdfe4bfefb136fe0f7475add03bb2 (patch)
treeb61928ab31b3c6c6578f13f6d46fe73a9df5e83e /src/quote_fmt_parse.y
parent19a51bbe411d98970bcebcec1e559d60b02899b0 (diff)
output printing text with locale encoding, and removed broken locale specific HTML entity reference conversion.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@129 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/quote_fmt_parse.y')
-rw-r--r--src/quote_fmt_parse.y12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/quote_fmt_parse.y b/src/quote_fmt_parse.y
index c44edf01..93b46314 100644
--- a/src/quote_fmt_parse.y
+++ b/src/quote_fmt_parse.y
@@ -272,7 +272,8 @@ special:
if (body)
fp = str_open_as_stream(body);
else
- fp = procmime_get_first_text_content(msginfo);
+ fp = procmime_get_first_text_content
+ (msginfo, NULL);
if (fp == NULL)
g_warning("Can't get text part\n");
@@ -294,7 +295,8 @@ special:
if (body)
fp = str_open_as_stream(body);
else
- fp = procmime_get_first_text_content(msginfo);
+ fp = procmime_get_first_text_content
+ (msginfo, NULL);
if (fp == NULL)
g_warning("Can't get text part\n");
@@ -318,7 +320,8 @@ special:
if (body)
fp = str_open_as_stream(body);
else
- fp = procmime_get_first_text_content(msginfo);
+ fp = procmime_get_first_text_content
+ (msginfo, NULL);
if (fp == NULL)
g_warning("Can't get text part\n");
@@ -342,7 +345,8 @@ special:
if (body)
fp = str_open_as_stream(body);
else
- fp = procmime_get_first_text_content(msginfo);
+ fp = procmime_get_first_text_content
+ (msginfo, NULL);
if (fp == NULL)
g_warning("Can't get text part\n");