mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* enc/unicode.c (onigenc_unicode_mbc_case_fold): balanced braces.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24658 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
1fd7f2e57d
commit
1af43ae867
1 changed files with 3 additions and 2 deletions
|
@ -2249,10 +2249,11 @@ onigenc_unicode_mbc_case_fold(OnigEncoding enc,
|
|||
}
|
||||
#if 0
|
||||
/* NO NEEDS TO CHECK */
|
||||
else if ((flag & INTERNAL_ONIGENC_CASE_FOLD_MULTI_CHAR) != 0) {
|
||||
else if ((flag & INTERNAL_ONIGENC_CASE_FOLD_MULTI_CHAR) != 0)
|
||||
#else
|
||||
else {
|
||||
else
|
||||
#endif
|
||||
{
|
||||
rlen = 0;
|
||||
for (i = 0; i < to->n; i++) {
|
||||
len = ONIGENC_CODE_TO_MBC(enc, to->code[i], fold);
|
||||
|
|
Loading…
Reference in a new issue