From 081c802cb9fe84d349bc4ecf26a36eceae431aed Mon Sep 17 00:00:00 2001 From: akr Date: Thu, 18 Sep 2008 12:53:25 +0000 Subject: * grapheme cluster implementation reverted. [ruby-dev:36375] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19417 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- enc/big5.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'enc/big5.c') diff --git a/enc/big5.c b/enc/big5.c index 825051c519..9993f472e1 100644 --- a/enc/big5.c +++ b/enc/big5.c @@ -108,9 +108,9 @@ big5_mbc_enc_len(const UChar* p, const UChar* e, OnigEncoding enc ARG_UNUSED) } static OnigCodePoint -big5_mbc_to_code(const UChar* p, const UChar* end, int *precise_ret, OnigEncoding enc) +big5_mbc_to_code(const UChar* p, const UChar* end, OnigEncoding enc) { - return onigenc_mbn_mbc_to_code(enc, p, end, precise_ret); + return onigenc_mbn_mbc_to_code(enc, p, end); } static int -- cgit v1.2.3