diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-02-17 07:42:23 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-02-17 07:42:23 +0000 |
commit | 0424e152c684a85f4b0691f1e84aec203115333d (patch) | |
tree | ccb4af1c7fa12a09934f315edba0b9d839e57ceb /enc/big5.c | |
parent | 5362e7fcddf70d16fc4261383f99175c90881353 (diff) |
* Merge Onigmo-5.13.1. [ruby-dev:45057] [Feature #5820]
https://github.com/k-takata/Onigmo
cp reg{comp,enc,error,exec,parse,syntax}.c reg{enc,int,parse}.h
cp oniguruma.h
cp tool/enc-unicode.rb
cp -r enc/
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34663 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enc/big5.c')
-rw-r--r-- | enc/big5.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/enc/big5.c b/enc/big5.c index c39329170e..9d7738d8f9 100644 --- a/enc/big5.c +++ b/enc/big5.c @@ -299,7 +299,9 @@ OnigEncodingDefine(big5, BIG5) = { big5_is_code_ctype, onigenc_not_support_get_ctype_code_range, big5_left_adjust_char_head, - big5_is_allowed_reverse_match + big5_is_allowed_reverse_match, + 0, + ONIGENC_FLAG_NONE, }; /* @@ -331,7 +333,9 @@ OnigEncodingDefine(big5_hkscs, BIG5_HKSCS) = { big5_is_code_ctype, onigenc_not_support_get_ctype_code_range, big5_left_adjust_char_head, - big5_is_allowed_reverse_match + big5_is_allowed_reverse_match, + 0, + ONIGENC_FLAG_NONE, }; ENC_ALIAS("Big5-HKSCS:2008", "Big5-HKSCS") @@ -363,5 +367,7 @@ OnigEncodingDefine(big5_uao, BIG5_UAO) = { big5_is_code_ctype, onigenc_not_support_get_ctype_code_range, big5_left_adjust_char_head, - big5_is_allowed_reverse_match + big5_is_allowed_reverse_match, + 0, + ONIGENC_FLAG_NONE, }; |