mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* array.c (take_items): honor encoding of class name.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39882 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
04c9bdb190
commit
b79ba4a745
1 changed files with 2 additions and 2 deletions
4
array.c
4
array.c
|
@ -3050,8 +3050,8 @@ take_items(VALUE obj, long n)
|
|||
result = rb_ary_new2(n);
|
||||
args[0] = result; args[1] = (VALUE)n;
|
||||
if (rb_check_block_call(obj, idEach, 0, 0, take_i, (VALUE)args) == Qundef)
|
||||
rb_raise(rb_eTypeError, "wrong argument type %s (must respond to :each)",
|
||||
rb_obj_classname(obj));
|
||||
rb_raise(rb_eTypeError, "wrong argument type %"PRIsVALUE" (must respond to :each)",
|
||||
rb_obj_class(obj));
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue