From b60ba5942968e782cfc407385e175c449924f1d7 Mon Sep 17 00:00:00 2001 From: why Date: Tue, 24 Jun 2003 14:12:03 +0000 Subject: [PATCH] * lib/yaml/types.rb: replaced Kernel::Hash reference with Object::Hash from [ruby-talk:74270] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3997 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ lib/yaml/types.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 7d85ded3dc..0b8baf62ad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Jun 24 14:22:41 2003 why the lucky stiff + + * lib/yaml/types.rb: replaced Kernel::Hash reference with Object::Hash + from [ruby-talk:74270] + Tue Jun 24 17:59:30 2003 Nobuyoshi Nakada * eval.c (rb_yield_0): show yielded block position not only yielding diff --git a/lib/yaml/types.rb b/lib/yaml/types.rb index 294fb36a57..f7772cb3a0 100644 --- a/lib/yaml/types.rb +++ b/lib/yaml/types.rb @@ -46,7 +46,7 @@ module YAML # # YAML Hash class to support comments and defaults # - class SpecialHash < Kernel::Hash + class SpecialHash < Object::Hash attr_accessor :default def inspect self.default.to_s