aboutsummaryrefslogtreecommitdiff
path: root/bindings/ruby/query.c
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2017-02-26 17:21:32 -0400
committerDavid Bremner <david@tethera.net>2017-03-22 08:35:07 -0300
commit86cbd215eb67d7b996c977352a50e70c101cb641 (patch)
tree2186342f5aa9f2d11c275eb30cfbbca5330e4fa2 /bindings/ruby/query.c
parent1e982de508c39dae7a61403f536df74c180dfb72 (diff)
lib: replace deprecated n_q_search_messages with status returning version
This function was deprecated in notmuch 0.21. We re-use the name for a status returning version, and deprecate the _st name.
Diffstat (limited to 'bindings/ruby/query.c')
-rw-r--r--bindings/ruby/query.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/ruby/query.c b/bindings/ruby/query.c
index 4b3f1c4f..2e36df6a 100644
--- a/bindings/ruby/query.c
+++ b/bindings/ruby/query.c
@@ -159,7 +159,7 @@ notmuch_rb_query_search_messages (VALUE self)
Data_Get_Notmuch_Query (self, query);
- status = notmuch_query_search_messages_st (query, &messages);
+ status = notmuch_query_search_messages (query, &messages);
if (status)
notmuch_rb_status_raise (status);