From 0420501709c9bc01df281f6e2bac83a4d8cf1f12 Mon Sep 17 00:00:00 2001 From: Tatsuya Kinoshita Date: Thu, 1 Aug 2013 23:47:57 +0900 Subject: Ignore ­ to prevent drawing hyphens everywhere --- entity.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'entity.c') diff --git a/entity.c b/entity.c index fdd8f64..45dc95e 100644 --- a/entity.c +++ b/entity.c @@ -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]; -- cgit v1.2.3