]> git.cworth.org Git - notmuch/blobdiff - bindings/ruby/init.c
ruby: db: reorganize initializer
[notmuch] / bindings / ruby / init.c
index e0c9936aee78e445ed846ff1975765a6f78ee5a1..2d1994af22740c6640d91367b8d81b40283fe717 100644 (file)
@@ -41,8 +41,6 @@ VALUE notmuch_rb_eUnbalancedFreezeThawError;
 VALUE notmuch_rb_eUnbalancedAtomicError;
 
 ID ID_call;
-ID ID_db_create;
-ID ID_db_mode;
 
 const rb_data_type_t notmuch_rb_object_type = {
     .wrap_struct_name = "notmuch_object",
@@ -95,8 +93,6 @@ Init_notmuch (void)
     VALUE mod;
 
     ID_call = rb_intern ("call");
-    ID_db_create = rb_intern ("create");
-    ID_db_mode = rb_intern ("mode");
 
     mod = rb_define_module ("Notmuch");