Merge branch 'bug/shy'

This commit is contained in:
Tatsuya Kinoshita
2013-08-01 23:48:09 +09:00

View File

@@ -44,6 +44,8 @@ conv_entity(unsigned int c)
return " "; return " ";
if (c == 0xa0) if (c == 0xa0)
return NBSP; return NBSP;
if (c == 0xad) /* SOFT HYPHEN */
return "";
if (c < 0x100) { /* Latin1 (ISO 8859-1) */ if (c < 0x100) { /* Latin1 (ISO 8859-1) */
if (UseAltEntity) if (UseAltEntity)
return alt_latin1[c - 0xa0]; return alt_latin1[c - 0xa0];