зеркало из https://github.com/github/ruby.git
* encoding.c (enc_find): simplified with RB_TYPE_P.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32817 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
48bc63fa7a
Коммит
048202f446
|
@ -1054,7 +1054,7 @@ static VALUE
|
||||||
enc_find(VALUE klass, VALUE enc)
|
enc_find(VALUE klass, VALUE enc)
|
||||||
{
|
{
|
||||||
int idx;
|
int idx;
|
||||||
if (!SPECIAL_CONST_P(enc) && BUILTIN_TYPE(enc) == T_DATA && is_data_encoding(enc))
|
if (!RB_TYPE_P(enc, T_DATA) && is_data_encoding(enc))
|
||||||
return enc;
|
return enc;
|
||||||
idx = str_to_encindex(enc);
|
idx = str_to_encindex(enc);
|
||||||
if (idx == UNSPECIFIED_ENCODING) return Qnil;
|
if (idx == UNSPECIFIED_ENCODING) return Qnil;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче