From: Mark Walters Date: Wed, 21 Oct 2015 18:51:37 +0000 (+0100) Subject: [PATCH] emacs: hello: bugfix: update docs for saved-searches X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9bd0f96ba82992f5f3cdf4445b8e9ae43bc005ed;p=notmuch-archives.git [PATCH] emacs: hello: bugfix: update docs for saved-searches --- diff --git a/bd/83d3bf5f467e1a582ac2e67c4b15b275ccabd0 b/bd/83d3bf5f467e1a582ac2e67c4b15b275ccabd0 new file mode 100644 index 000000000..19f3bdfb7 --- /dev/null +++ b/bd/83d3bf5f467e1a582ac2e67c4b15b275ccabd0 @@ -0,0 +1,94 @@ +Return-Path: +X-Original-To: notmuch@notmuchmail.org +Delivered-To: notmuch@notmuchmail.org +Received: from localhost (localhost [127.0.0.1]) + by arlo.cworth.org (Postfix) with ESMTP id 98E226DE13A3 + for ; Wed, 21 Oct 2015 11:51:45 -0700 (PDT) +X-Virus-Scanned: Debian amavisd-new at cworth.org +X-Spam-Flag: NO +X-Spam-Score: -0.031 +X-Spam-Level: +X-Spam-Status: No, score=-0.031 tagged_above=-999 required=5 tests=[AWL=0.539, + DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, + FREEMAIL_ENVFROM_END_DIGIT=0.25, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7, + RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, SPF_PASS=-0.001] + autolearn=disabled +Received: from arlo.cworth.org ([127.0.0.1]) + by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024) + with ESMTP id yi2kx6dGktZt for ; + Wed, 21 Oct 2015 11:51:44 -0700 (PDT) +Received: from mail-wi0-f180.google.com (mail-wi0-f180.google.com + [209.85.212.180]) + by arlo.cworth.org (Postfix) with ESMTPS id 819BD6DE12F3 + for ; Wed, 21 Oct 2015 11:51:43 -0700 (PDT) +Received: by wicll6 with SMTP id ll6so88039728wic.1 + for ; Wed, 21 Oct 2015 11:51:41 -0700 (PDT) +DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; + h=from:to:cc:subject:date:message-id; + bh=pqEhzkxXbugWbdBBAkuYUdQr2MYurIh4bJfapOip5sc=; + b=bsZ1PazgxMURLs7C8Proe9U/S+Q7WKIDOlwcQhmXO73EsV1zf/jMzB4l8iVIgcvmRw + wGyzPTyvKEwtJjWazKlMXQEiaB0gAnGZ8d8SUtIC/GKdSB27ztg/P05Cb4sDhNQ6vc4E + HwL0+FERBdC1F7eK4J+7uS+s9Sv/nktlTyhc3cNhMEodfGrKtqQCpVQvm2fvMYIT7RF1 + GwmFZbrJq9MpJeug9UGSphMvhfgM1vLXSgndU/Bh3wVSd4CSlSQ7mBjeXQSMp/uUVOqM + gmqVEzcAhYzAU66JMOBmd1kaeiHFOwim9dwFz5G8bDGFNj7ARx909L7FoEnnH6ftyeSt + n4UA== +X-Received: by 10.180.240.169 with SMTP id wb9mr37303222wic.88.1445453501654; + Wed, 21 Oct 2015 11:51:41 -0700 (PDT) +Received: from localhost (5751dfa2.skybroadband.com. [87.81.223.162]) + by smtp.gmail.com with ESMTPSA id x16sm8421644wia.7.2015.10.21.11.51.40 + (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); + Wed, 21 Oct 2015 11:51:40 -0700 (PDT) +From: Mark Walters +To: notmuch@notmuchmail.org +Subject: [PATCH] emacs: hello: bugfix: update docs for saved-searches +Date: Wed, 21 Oct 2015 19:51:37 +0100 +Message-Id: <1445453497-17608-1-git-send-email-markwalters1009@gmail.com> +X-Mailer: git-send-email 2.1.4 +X-BeenThere: notmuch@notmuchmail.org +X-Mailman-Version: 2.1.20 +Precedence: list +List-Id: "Use and development of the notmuch mail system." + +List-Unsubscribe: , + +List-Archive: +List-Post: +List-Help: +List-Subscribe: , + +X-List-Received-Date: Wed, 21 Oct 2015 18:51:45 -0000 + +Update the documentation string for notmuch-saved-searches to include +the new :search-type option. +--- + +When writing my NEWS items I realised I had not updated this doc +string when writing with the recent allow saved searches patch +(allowing them to specify tree view). + +Best wishes + +Mark + + +emacs/notmuch-hello.el | 4 ++++ + 1 file changed, 4 insertions(+) + +diff --git a/emacs/notmuch-hello.el b/emacs/notmuch-hello.el +index d9fe3ff..8bde808 100644 +--- a/emacs/notmuch-hello.el ++++ b/emacs/notmuch-hello.el +@@ -120,6 +120,10 @@ (defcustom notmuch-saved-searches + :sort-order Specify the sort order to be used for the search. + Possible values are 'oldest-first 'newest-first or + nil. Nil means use the default sort order. ++ :search-type Specify whether to run the search in search-mode ++ or tree mode. Set to 'tree to specify tree ++ mode, set to nil (or anything except tree) to ++ specify search mode. + + Other accepted forms are a cons cell of the form (NAME . QUERY) + or a list of the form (NAME QUERY COUNT-QUERY)." +-- +2.1.4 +