From 93dcc3b695e19dd36cc8f638c6e01ecbbd9a447d Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Thu, 12 Nov 2009 16:47:27 -0800 Subject: libnotmuch: Underlying support for doing partial-results searches. The library interface now allows the caller to do incremental searches, (such as one page of results at a time). Next we'll just need to hook this up to "notmuch search" and the emacs interface. --- notmuch-search.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'notmuch-search.c') diff --git a/notmuch-search.c b/notmuch-search.c index 38ca75d6..41e317a2 100644 --- a/notmuch-search.c +++ b/notmuch-search.c @@ -53,7 +53,7 @@ notmuch_search_command (void *ctx, int argc, char *argv[]) return 1; } - for (threads = notmuch_query_search_threads (query); + for (threads = notmuch_query_search_threads (query, 0, -1); notmuch_threads_has_more (threads); notmuch_threads_advance (threads)) { -- cgit v1.2.3