From 776f222f590998bc0da95990b9d113b63103c6a6 Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 13 Mar 2000 07:18:45 +0000 Subject: 2000-03-13 git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@638 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- struct.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'struct.c') diff --git a/struct.c b/struct.c index 743a2fd7e..52063ae77 100644 --- a/struct.c +++ b/struct.c @@ -444,7 +444,7 @@ rb_struct_aref(s, idx) { long i; - if (TYPE(idx) == T_STRING) { + if (TYPE(idx) == T_STRING || TYPE(idx) == T_SYMBOL) { return rb_struct_aref_id(s, rb_to_id(idx)); } @@ -489,7 +489,7 @@ rb_struct_aset(s, idx, val) { long i; - if (TYPE(idx) == T_STRING) { + if (TYPE(idx) == T_STRING || TYPE(idx) == T_SYMBOL) { return rb_struct_aset_id(s, rb_to_id(idx), val); } -- cgit