diff options
| author | David Bremner <david@tethera.net> | 2017-02-26 17:21:31 -0400 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2017-03-22 08:28:09 -0300 |
| commit | 1e982de508c39dae7a61403f536df74c180dfb72 (patch) | |
| tree | ed2d60eafcb3029536f7bbaa06d2b8b78c2852b7 /bindings/ruby/query.c | |
| parent | fc63c1583335d3f09392a37f65edf0b795af2782 (diff) | |
lib: replace n_query_search_threads with status returning version
This function was deprecated in notmuch 0.21. We finally remove the
deprecated API, and rename the status returning version to the simpler
name. The status returning is kept as a deprecated alias.
Diffstat (limited to 'bindings/ruby/query.c')
| -rw-r--r-- | bindings/ruby/query.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/ruby/query.c b/bindings/ruby/query.c index ce66926c..4b3f1c4f 100644 --- a/bindings/ruby/query.c +++ b/bindings/ruby/query.c @@ -138,7 +138,7 @@ notmuch_rb_query_search_threads (VALUE self) Data_Get_Notmuch_Query (self, query); - status = notmuch_query_search_threads_st (query, &threads); + status = notmuch_query_search_threads (query, &threads); if (status) notmuch_rb_status_raise (status); |
