aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch.c
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-10-28 10:35:26 -0700
committerGravatar Carl Worth <cworth@cworth.org>2009-10-28 10:35:26 -0700
commitb04cc337388ea93cdd8a569a87f8bdc442f0cb33 (patch)
tree13e825a0b4839b2b000b659b79bb8f7685dfb6c9 /notmuch.c
parentdf959868d9fc4f78682da3363d15685d69d2353b (diff)
notmuch search: Clarify documentation of implicit Boolean operators
The original documentation of implicit AND is what we want, but Xapian doesn't actually let us get that today. So be honest about what the user can actually expect. And let's hope the Xapian wizards give us the feature we want soon: http://trac.xapian.org/ticket/402
Diffstat (limited to 'notmuch.c')
-rw-r--r--notmuch.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/notmuch.c b/notmuch.c
index 1f589894..09420ee8 100644
--- a/notmuch.c
+++ b/notmuch.c
@@ -1073,7 +1073,9 @@ command_t commands[] = {
"\t\tIn addition to individual terms, multiple terms can be\n"
"\t\tcombined with Boolean operators (\"and\", \"or\", \"not\", etc.).\n"
"\t\tEach term in the query will be implicitly connected by a\n"
- "\t\tlogical AND if no explicit operator is provided.\n\n"
+ "\t\tlogical AND if no explicit operator is provided, (except\n"
+ "\t\tthat terms with a common prefix will be implicitly combined\n"
+ "\t\twith OR until we get Xapian defect #402 fixed).\n\n"
"\t\tParentheses can also be used to control the combination of\n"
"\t\tthe Boolean operators, but will have to be protected from\n"
"\t\tinterpretation by the shell, (such as by putting quotation\n"