aboutsummaryrefslogtreecommitdiff
path: root/notmuch-dump.c
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2009-11-12 16:47:27 -0800
committerCarl Worth <cworth@cworth.org>2009-11-12 16:47:27 -0800
commit93dcc3b695e19dd36cc8f638c6e01ecbbd9a447d (patch)
tree5464887b28a4c53bc015fc8e6ea1a35221cf54c8 /notmuch-dump.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-dump.c')
-rw-r--r--notmuch-dump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/notmuch-dump.c b/notmuch-dump.c
index e1fe723..4c6e321 100644
--- a/notmuch-dump.c
+++ b/notmuch-dump.c
@@ -57,7 +57,7 @@ notmuch_dump_command (unused (void *ctx), int argc, char *argv[])
output = stdout;
}
- 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))
{