Skip to content

Commit

Permalink
Revert "Add Yijing Hexagram Symbols to CJK"
Browse files Browse the repository at this point in the history
This reverts commit 922fffb.

There are Yijing Trigram Symbols (U+2630-U+2637) in Miscellaneous Symbols block.
We need to keep consistency with them.
The number of product terms is the same when we adopt both or neither as CJK.
  • Loading branch information
tats-u authored and jgm committed Sep 23, 2024
1 parent 4b52f13 commit 1c2e49a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/utf8.c
Original file line number Diff line number Diff line change
Expand Up @@ -455,9 +455,8 @@ int cmark_utf8proc_is_CJK(int32_t uc) {
|| (uc >= 0x31f0 && uc <= 0x31ff) // Katakana Phonetic Extensions
|| (uc >= 0x3200 && uc <= 0x32ff) // Enclosed CJK Letters & Months
|| (uc >= 0x3300 && uc <= 0x33ff) // CJK Compatibility
|| (uc >= 0x3400 && uc <= 0x4dbf) // CJK Unified Ideographs Extension A
|| (uc >= 0x4dc0 && uc <= 0x4dff) // Yijing Hexagram Symbols
|| (uc >= 0x4e00 && uc <= 0x9fff) // CJK Unified Ideographs
|| (uc >= 0x3400 && */ uc <= 0x4dbf) // CJK Unified Ideographs Extension A
|| (uc >= 0x4e00 && /* uc <= 0x9fff) // CJK Unified Ideographs
|| (uc >= 0xa000 && uc <= 0xa48f) // Yi Syllables
|| (uc >= 0xa490 && */ uc <= 0xa4cf) // Yi Radicals
|| (uc >= 0xf900 && uc <= 0xfaff) // CJK Compatibility Ideographs
Expand Down

0 comments on commit 1c2e49a

Please sign in to comment.