Skip to content
This repository was archived by the owner on May 14, 2024. It is now read-only.

Commit

Permalink
feat(chareset_filter): add CJK Compatibility Ideographs in is_extende…
Browse files Browse the repository at this point in the history
  • Loading branch information
lotem authored and sih4sing5hong5 committed Jan 3, 2022
1 parent 6a34576 commit ddba15a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/rime/gear/charset_filter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ bool is_extended_cjk(uint32_t ch)
(ch >= 0x2B820 && ch <= 0x2CEAF) || // CJK Unified Ideographs Extension E
(ch >= 0x2CEB0 && ch <= 0x2EBEF) || // CJK Unified Ideographs Extension F
(ch >= 0x30000 && ch <= 0x3134F) || // CJK Unified Ideographs Extension G
(ch >= 0xF900 && ch <= 0xFAFF) || // CJK Compatibility Ideographs
(ch >= 0x2F800 && ch <= 0x2FA1F)) // CJK Compatibility Ideographs Supplement
return true;

Expand Down

0 comments on commit ddba15a

Please sign in to comment.