зеркало из https://github.com/github/ruby.git
* string.c (str_sublen): use rb_enc_strlen.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15517 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
8984fa6742
Коммит
bf2d82b280
|
@ -1,3 +1,7 @@
|
|||
Sun Feb 17 13:03:48 2008 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* string.c (str_sublen): use rb_enc_strlen.
|
||||
|
||||
Sun Feb 17 12:17:52 2008 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* enc/{euc_jp.c,gbk.c,iso_8859_1.c,iso_8859_11.c,iso_8859_13.c,
|
||||
|
|
14
string.c
14
string.c
|
@ -1071,19 +1071,11 @@ str_utf8_offset(const char *p, const char *e, int nth)
|
|||
static long
|
||||
str_sublen(VALUE str, long pos, rb_encoding *enc)
|
||||
{
|
||||
if (rb_enc_mbmaxlen(enc) == 1 || pos < 0) return pos;
|
||||
if (rb_enc_mbmaxlen(enc) == 1 || pos < 0)
|
||||
return pos;
|
||||
else {
|
||||
char *p = RSTRING_PTR(str);
|
||||
char *e = p + pos;
|
||||
long i;
|
||||
|
||||
i = 0;
|
||||
while (p < e) {
|
||||
p += rb_enc_mbclen(p, RSTRING_END(str), enc);
|
||||
i++;
|
||||
}
|
||||
if (p == e) return i;
|
||||
return i - 1;
|
||||
return rb_enc_strlen(p, p + pos, enc);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче