summaryrefslogtreecommitdiff
path: root/transcode.c
diff options
context:
space:
mode:
Diffstat (limited to 'transcode.c')
-rw-r--r--transcode.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/transcode.c b/transcode.c
index 6af3a238b5..505811a3bf 100644
--- a/transcode.c
+++ b/transcode.c
@@ -1790,13 +1790,15 @@ econv_description(const char *sname, const char *dname, int ecflags, VALUE mesg)
if (ecflags & (ECONV_UNIVERSAL_NEWLINE_DECODER|
ECONV_CRLF_NEWLINE_ENCODER|
- ECONV_CR_NEWLINE_ENCODER)) {
+ ECONV_CR_NEWLINE_ENCODER|
+ ECONV_HTML_TEXT_ENCODER|
+ ECONV_HTML_ATTR_ENCODER)) {
const char *pre = "";
if (has_description)
rb_str_cat2(mesg, " with ");
if (ecflags & ECONV_UNIVERSAL_NEWLINE_DECODER) {
rb_str_cat2(mesg, pre); pre = ",";
- rb_str_cat2(mesg, "Universal-newline");
+ rb_str_cat2(mesg, "universal-newline");
}
if (ecflags & ECONV_CRLF_NEWLINE_ENCODER) {
rb_str_cat2(mesg, pre); pre = ",";
@@ -1806,6 +1808,14 @@ econv_description(const char *sname, const char *dname, int ecflags, VALUE mesg)
rb_str_cat2(mesg, pre); pre = ",";
rb_str_cat2(mesg, "CR-newline");
}
+ if (ecflags & ECONV_HTML_TEXT_ENCODER) {
+ rb_str_cat2(mesg, pre); pre = ",";
+ rb_str_cat2(mesg, "HTML-text");
+ }
+ if (ecflags & ECONV_HTML_ATTR_ENCODER) {
+ rb_str_cat2(mesg, pre); pre = ",";
+ rb_str_cat2(mesg, "HTML-attr");
+ }
has_description = 1;
}
if (!has_description) {