From 7de846ed190b2564b0642de79918dd3804083b4e Mon Sep 17 00:00:00 2001 From: James Cloos Date: Tue, 24 Apr 2012 16:01:35 -0400 Subject: =?UTF-8?q?Fix=20ISO-8859-7=20=E2=86=92=20ISO-10646=20mapping.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ISO-8859-7 code point 0xD2 is unassigned. ISO-10646 code point U+03A2, to which 0xD2 was mapping, also is unassigned. Reported by Norm Pierce. Signed-off-by: James Cloos --- src/fontenc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/fontenc.c b/src/fontenc.c index bb8ff12..4cfa1e5 100644 --- a/src/fontenc.c +++ b/src/fontenc.c @@ -279,6 +279,8 @@ iso8859_7_to_unicode(unsigned isocode, void *client_data) return 0x02BC; else if(isocode==0xAF) return 0x2015; + else if(isocode==0xD2) /* unassigned */ + return 0; else if(isocode>=0xB4) return isocode-0xA0+0x0370; else -- cgit v1.2.3