1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* grapheme cluster implementation reverted. [ruby-dev:36375]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19417 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2008-09-18 12:53:25 +00:00
parent 22987dc7fe
commit 081c802cb9
25 changed files with 233 additions and 891 deletions

View file

@ -615,11 +615,8 @@ onigenc_single_byte_mbc_enc_len(const UChar* p ARG_UNUSED, const UChar* e ARG_UN
extern OnigCodePoint
onigenc_single_byte_mbc_to_code(const UChar* p, const UChar* end ARG_UNUSED,
int *precise_ret,
OnigEncoding enc ARG_UNUSED)
{
if (precise_ret)
*precise_ret = ONIGENC_CONSTRUCT_MBCLEN_CHARFOUND(1);
return (OnigCodePoint )(*p);
}
@ -671,20 +668,12 @@ onigenc_ascii_is_code_ctype(OnigCodePoint code, unsigned int ctype,
}
extern OnigCodePoint
onigenc_mbn_mbc_to_code(OnigEncoding enc, const UChar* p, const UChar* end, int *precise_ret)
onigenc_mbn_mbc_to_code(OnigEncoding enc, const UChar* p, const UChar* end)
{
int c, i, len, ret;
int c, i, len;
OnigCodePoint n;
ret = ONIGENC_PRECISE_MBC_ENC_LEN(enc, p, end);
if (precise_ret)
*precise_ret = ret;
if (ONIGENC_MBCLEN_CHARFOUND_P(ret))
len = ONIGENC_MBCLEN_CHARFOUND_LEN(ret);
else if (ONIGENC_MBCLEN_NEEDMORE_P(ret))
len = end-p+ONIGENC_MBCLEN_NEEDMORE_LEN(ret);
else
len = 1;
len = enclen(enc, p, end);
n = (OnigCodePoint )(*p++);
if (len == 1) return n;