Ignore ­ to prevent drawing hyphens everywhere

This commit is contained in:
Tatsuya Kinoshita
2013-08-01 23:47:57 +09:00
parent dbd52ac2ca
commit 0420501709

View File

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