X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=lib%2Fquery.cc;h=7d191e529ec72974a2ec5adad21fe63e87e2942f;hp=504ab9e6b5463436a048102435992d328a74f7de;hb=94eb9aacd40a8aa133f64bbe5ed71c0138fb5ed9;hpb=ba3554b8045e16ae883d559b7e575e8aca00f6d2 diff --git a/lib/query.cc b/lib/query.cc index 504ab9e6..7d191e52 100644 --- a/lib/query.cc +++ b/lib/query.cc @@ -76,9 +76,7 @@ notmuch_query_set_sort (notmuch_query_t *query, notmuch_sort_t sort) } notmuch_messages_t * -notmuch_query_search_messages (notmuch_query_t *query, - int first, - int max_messages) +notmuch_query_search_messages (notmuch_query_t *query) { notmuch_database_t *notmuch = query->notmuch; const char *query_string = query->query_string; @@ -130,9 +128,7 @@ notmuch_query_search_messages (notmuch_query_t *query, enquire.set_query (final_query); - if (max_messages == -1) - max_messages = notmuch->xapian_db->get_doccount (); - mset = enquire.get_mset (first, max_messages); + mset = enquire.get_mset (0, notmuch->xapian_db->get_doccount ()); for (i = mset.begin (); i != mset.end (); i++) { notmuch_message_t *message; @@ -186,7 +182,7 @@ notmuch_query_search_threads (notmuch_query_t *query) threads->threads = g_hash_table_new_full (g_str_hash, g_str_equal, free, NULL); - threads->messages = notmuch_query_search_messages (query, 0, -1); + threads->messages = notmuch_query_search_messages (query); threads->thread_id = NULL;