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-show.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'notmuch-show.c') diff --git a/notmuch-show.c b/notmuch-show.c index 41b33641..9f81ae16 100644 --- a/notmuch-show.c +++ b/notmuch-show.c @@ -153,7 +153,7 @@ notmuch_show_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