From 8eb7cac8c11a9d2f2a3b34d9f6a5f26d99bf8720 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Thu, 16 Jul 2015 05:57:48 +0200 Subject: [PATCH] unibdf2hex: drop range restriction --- src/unibdf2hex.c | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/unibdf2hex.c b/src/unibdf2hex.c index 6669d8f..b421f6a 100644 --- a/src/unibdf2hex.c +++ b/src/unibdf2hex.c @@ -28,9 +28,6 @@ #include #include -#define UNISTART 0x3400 -#define UNISTOP 0x4DBF - #define MAXBUF 256 @@ -54,18 +51,6 @@ main() If we want this code point, get the BBX (bounding box) and BITMAP information. */ - if (!( - (thispoint >= 0x2E80 && thispoint <= 0x2EFF) || // CJK Radicals Supplement - (thispoint >= 0x2F00 && thispoint <= 0x2FDF) || // Kangxi Radicals - (thispoint >= 0x2FF0 && thispoint <= 0x2FFF) || // Ideographic Description Characters - (thispoint >= 0x3001 && thispoint <= 0x303F) || // CJK Symbols and Punctuation (U+3000 is a space) - (thispoint >= 0x3100 && thispoint <= 0x312F) || // Bopomofo - (thispoint >= 0x31A0 && thispoint <= 0x31BF) || // Bopomofo extend - (thispoint >= 0x31C0 && thispoint <= 0x31EF) || // CJK Strokes - (thispoint >= 0x3400 && thispoint <= 0x4DBF) || // CJK Unified Ideographs Extension A - (thispoint >= 0x4E00 && thispoint <= 0x9FCF) || // CJK Unified Ideographs - (thispoint >= 0xF900 && thispoint <= 0xFAFF)) // CJK Compatibility Ideographs - ) continue; while (fgets (inbuf, MAXBUF - 1, stdin) != NULL && strncmp (inbuf, "BBX ", 4) != 0); /* find bounding box */ -- 2.30.0