From a882a3fbaf4e62750532ca3e37d64edbeccc43c6 Mon Sep 17 00:00:00 2001 From: matz Date: Wed, 8 Jun 2005 03:20:09 +0000 Subject: * bignum.c (get2comp): calculate proper 2's complement for negative numbers. a bug in normalizing negative numbers reported from Honda Hiroki . * ext/socket/socket.c (ruby_getaddrinfo__aix): merged a patch from KUBO Takehiro to support AIX. [ruby-list:40832] * lib/yaml/rubytypes.rb (Array::to_yaml): merged a patch from Tilman Sauerbeck . [ruby-core:05055] * lib/yaml/rubytypes.rb (Hash::to_yaml): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@8592 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/yaml/rubytypes.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/yaml') diff --git a/lib/yaml/rubytypes.rb b/lib/yaml/rubytypes.rb index 2a0c31d99..643b30b22 100644 --- a/lib/yaml/rubytypes.rb +++ b/lib/yaml/rubytypes.rb @@ -77,7 +77,7 @@ hash_proc = Proc.new { |type, val| elsif Hash === val type, obj_class = YAML.read_type_class( type, Hash ) if obj_class != Hash - o = obj_class.new + o = obj_class.allocate o.update( val ) val = o end @@ -236,7 +236,7 @@ array_proc = Proc.new { |type, val| if Array === val type, obj_class = YAML.read_type_class( type, Array ) if obj_class != Array - o = obj_class.new + o = obj_class.allocate o.concat( val ) val = o end -- cgit