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-reply.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'notmuch-reply.c') diff --git a/notmuch-reply.c b/notmuch-reply.c index f26bd552..86e9b3a2 100644 --- a/notmuch-reply.c +++ b/notmuch-reply.c @@ -211,7 +211,7 @@ notmuch_reply_command (void *ctx, int argc, char *argv[]) return 1; } - for (messages = notmuch_query_search_messages (query); + for (messages = notmuch_query_search_messages (query, 0, -1); notmuch_messages_has_more (messages); notmuch_messages_advance (messages)) { -- cgit v1.2.3