From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.1 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF, T_SCC_BODY_TEXT_LINE shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 889D51F4D7; Tue, 21 Jun 2022 10:37:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1655807870; bh=7AjWiWjSrtXy3PCeqzBgxYiNhc/JmMSaT8U8Mp2mh/I=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=sVL/0M6HdlEX0ZOKQoVjVqzBmdVlJA3XUt2t7kpenNdx0JtL0bm4dcvIvbFQZ3516 M0wn2zN/Rp8hrXZl+NXEOVJmG1mJOgRJgUyDfePVf23Q2qjEsFU7jJK/cnxQOcNrek hfsDDJyh+iNKMzKYgdNYEas0w+WNG0ZROnZOGzOw= Date: Tue, 21 Jun 2022 10:37:50 +0000 From: Eric Wong To: Kyle Meyer Cc: meta@public-inbox.org Subject: [PATCH 4/3] search: add help for patchid: prefix Message-ID: <20220621103750.GA766@dcvr> References: <20220620192730.550803-1-e@80x24.org> <20220620192730.550803-3-e@80x24.org> <87letrt882.fsf@kyleam.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <87letrt882.fsf@kyleam.com> List-Id: Kyle Meyer wrote: > Should an entry for this be added to Search.pm's @HELP? Yes, thanks :> ---------8<--------- Subject: [PATCH] search: add help for patchid: prefix Noticed-by: Kyle Meyer --- lib/PublicInbox/Search.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/PublicInbox/Search.pm b/lib/PublicInbox/Search.pm index 6f9fdde1..b6141f68 100644 --- a/lib/PublicInbox/Search.pm +++ b/lib/PublicInbox/Search.pm @@ -179,6 +179,7 @@ EOF 'dfpre:' => 'match pre-image git blob ID', 'dfpost:' => 'match post-image git blob ID', 'dfblob:' => 'match either pre or post-image git blob ID', + 'patchid:' => "match `git patch-id --stable' output", 'rt:' => <