aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch-tag.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-tag.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-tag.c')
-rw-r--r--notmuch-tag.c2
1 files changed, 1 insertions, 1 deletions
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))
{