summaryrefslogtreecommitdiff
path: root/struct.c
diff options
context:
space:
mode:
Diffstat (limited to 'struct.c')
-rw-r--r--struct.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/struct.c b/struct.c
index 743a2fd7ef..52063ae77f 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);
}