From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 6D98C20970 for ; Tue, 11 Apr 2017 23:41:54 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] search: fix help message for searching within quotes Date: Tue, 11 Apr 2017 23:41:54 +0000 Message-Id: <20170411234154.27412-1-e@80x24.org> List-Id: I'm not sure if people use either and it's not in mairix (where we base our abbreviations off of). Lets go with the shorter prefix since it's easier-to-type. --- lib/PublicInbox/Search.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/PublicInbox/Search.pm b/lib/PublicInbox/Search.pm index 8c72fa1..bc2b698 100644 --- a/lib/PublicInbox/Search.pm +++ b/lib/PublicInbox/Search.pm @@ -91,7 +91,7 @@ are also supported EOF 'b:' => 'match within message body, including text attachments', 'nq:' => 'match non-quoted text within message body', - 'quot:' => 'match quoted text within message body', + 'q:' => 'match quoted text within message body', 'n:' => 'match filename of attachment(s)', 't:' => 'match within the To header', 'c:' => 'match within the Cc header', -- EW