aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch-search.c
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-11-12 16:47:27 -0800
committerGravatar Carl Worth <cworth@cworth.org>2009-11-12 16:47:27 -0800
commit93dcc3b695e19dd36cc8f638c6e01ecbbd9a447d (patch)
tree5464887b28a4c53bc015fc8e6ea1a35221cf54c8 /notmuch-search.c
parente530910ae2f4a25ddf0a45bb9eb0402561d46686 (diff)
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.
Diffstat (limited to 'notmuch-search.c')
-rw-r--r--notmuch-search.c2
1 files changed, 1 insertions, 1 deletions
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))
{