Don't store the key-value pair array in an instance variable.
[ruby-vorbistagger.git] / ext / comments.c
index 27ea5c7008dba528a6dff0de6e8fe6b7d6010269..29b03371da548a9c02cff71d2960bf04b6233249 100644 (file)
@@ -64,8 +64,6 @@ comments_init (VALUE self, vcedit_state *state)
 
                rb_ary_store (o->items, i, pair);
        }
-
-       rb_iv_set (self, "@items", o->items);
 }
 
 void
@@ -551,6 +549,9 @@ Init_Comments (VALUE mVorbis)
 
        rb_define_alias (c, "size", "length");
        rb_define_alias (c, "each_pair", "each");
+       rb_define_alias (c, "key?", "has_key?");
+       rb_define_alias (c, "include?", "has_key?");
+       rb_define_alias (c, "member?", "has_key?");
 
        id_casecmp = rb_intern ("casecmp");
        id_replace = rb_intern ("replace");