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-tag.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'notmuch-tag.c') diff --git a/notmuch-tag.c b/notmuch-tag.c index ada52e45..80582acf 100644 --- a/notmuch-tag.c +++ b/notmuch-tag.c @@ -86,7 +86,7 @@ notmuch_tag_command (void *ctx, unused (int argc), unused (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