diff options
Diffstat (limited to 'enc/big5.c')
-rw-r--r-- | enc/big5.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/enc/big5.c b/enc/big5.c index 27315c4ba9..7c6c2d359f 100644 --- a/enc/big5.c +++ b/enc/big5.c @@ -302,6 +302,9 @@ OnigEncodingDefine(big5, BIG5) = { big5_is_allowed_reverse_match, 0, ONIGENC_FLAG_NONE, +#ifdef ONIG_CASE_MAPPING + onigenc_not_support_case_map, +#endif /* ONIG_CASE_MAPPING */ }; /* @@ -336,6 +339,9 @@ OnigEncodingDefine(big5_hkscs, BIG5_HKSCS) = { big5_is_allowed_reverse_match, 0, ONIGENC_FLAG_NONE, +#ifdef ONIG_CASE_MAPPING + onigenc_not_support_case_map, +#endif /* ONIG_CASE_MAPPING */ }; ENC_ALIAS("Big5-HKSCS:2008", "Big5-HKSCS") @@ -370,4 +376,7 @@ OnigEncodingDefine(big5_uao, BIG5_UAO) = { big5_is_allowed_reverse_match, 0, ONIGENC_FLAG_NONE, +#ifdef ONIG_CASE_MAPPING + onigenc_not_support_case_map, +#endif /* ONIG_CASE_MAPPING */ }; |