aboutsummaryrefslogtreecommitdiff
path: root/bindings/ruby/defs.h
diff options
context:
space:
mode:
authorFelipe Contreras <felipe.contreras@gmail.com>2021-05-23 21:19:09 -0500
committerDavid Bremner <david@tethera.net>2021-06-27 14:13:03 -0300
commit814abafc3e4280de115d4bc0ac01f8d026a0a7f9 (patch)
treeb01da71f2624e56230e4cce756c01021ee6e3b72 /bindings/ruby/defs.h
parent6e7365fb2033d59d4040d20c1d05c0e652dfcc7b (diff)
ruby: add keyword arguments to db.query
That way we don't need pass them to the query object ourselves. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Diffstat (limited to 'bindings/ruby/defs.h')
-rw-r--r--bindings/ruby/defs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/ruby/defs.h b/bindings/ruby/defs.h
index 9860ee17..995bcafd 100644
--- a/bindings/ruby/defs.h
+++ b/bindings/ruby/defs.h
@@ -174,7 +174,7 @@ VALUE
notmuch_rb_database_get_all_tags (VALUE self);
VALUE
-notmuch_rb_database_query_create (VALUE self, VALUE qstrv);
+notmuch_rb_database_query_create (int argc, VALUE *argv, VALUE self);
/* directory.c */
VALUE