aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch.c
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-11-23 20:12:57 -0800
committerGravatar Carl Worth <cworth@cworth.org>2009-11-23 20:17:37 -0800
commit1fd8b7866f189a66e4491b01452f476371759f91 (patch)
tree9ba352943bb700f093946f3070c69bae6b568455 /notmuch.c
parentf6158039324e44159d449b459829dc7ad4e52acc (diff)
notmuch search: Remove the chunked-searching hack.
This was a poor workaround around the fact that the existing notmuch_threads_t object is implemented poorly. It's got a fine iterartor-based interface, but the implementation does all of the work up-front in _create rather than doing the work incrementally while iterating. So to start fixing this, first get rid of all the hacks we had working around this. This drops the --first and --max-threads options from the search command, (but hopefully nobody was using them anyway---notmuch.el certainly wasn't).
Diffstat (limited to 'notmuch.c')
-rw-r--r--notmuch.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/notmuch.c b/notmuch.c
index b84e2844..f45b6924 100644
--- a/notmuch.c
+++ b/notmuch.c
@@ -162,16 +162,6 @@ command_t commands[] = {
"\n"
"\t\tSupported options for search include:\n"
"\n"
- "\t\t--max-threads=<value>\n"
- "\n"
- "\t\t\tRestricts displayed search results to a subset\n"
- "\t\t\tof the results that would match the terms.\n"
- "\n"
- "\t\t--first=<value>\n"
- "\n"
- "\t\t\tOmits the first <value> threads from the search\n"
- "\t\t\tresults that would otherwise be displayed.\n"
- "\n"
"\t\t--sort=(newest-first|oldest-first)\n"
"\n"
"\t\t\tPresent results in either chronological order\n"