summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwhy <why@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-06-24 14:12:03 +0000
committerwhy <why@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-06-24 14:12:03 +0000
commit7169c3cec2ef735c259e2140803acc4667c18b0c (patch)
treea0ba77752ebd0eb528e45464923f97135a477722
parenta8911cce69a6f851d44253f10fce43a88c7be95a (diff)
downloadruby-7169c3cec2ef735c259e2140803acc4667c18b0c.tar.gz
ruby-7169c3cec2ef735c259e2140803acc4667c18b0c.tar.xz
ruby-7169c3cec2ef735c259e2140803acc4667c18b0c.zip
* lib/yaml/types.rb: replaced Kernel::Hash reference with Object::Hash
from [ruby-talk:74270] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3997 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--lib/yaml/types.rb2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 7d85ded3d..0b8baf62a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Tue Jun 24 14:22:41 2003 why the lucky stiff <ruby-cvs@whytheluckystiff.net>
+
+ * lib/yaml/types.rb: replaced Kernel::Hash reference with Object::Hash
+ from [ruby-talk:74270]
+
Tue Jun 24 17:59:30 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
* 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 294fb36a5..f7772cb3a 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