[PATCH] configure: add --without-api-docs option
[notmuch-archives.git] / 8a / 9143ac5d5f7862781794fb7058ec0574b4473c
1 Return-Path: <jrollins@finestructure.net>\r
2 X-Original-To: notmuch@notmuchmail.org\r
3 Delivered-To: notmuch@notmuchmail.org\r
4 Received: from localhost (localhost [127.0.0.1])\r
5         by olra.theworths.org (Postfix) with ESMTP id C3E0041ED91\r
6         for <notmuch@notmuchmail.org>; Mon,  2 Apr 2012 01:21:13 -0700 (PDT)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: -2.3\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-2.3 tagged_above=-999 required=5\r
12         tests=[RCVD_IN_DNSWL_MED=-2.3] autolearn=disabled\r
13 Received: from olra.theworths.org ([127.0.0.1])\r
14         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
15         with ESMTP id rQyxr-4fC2YT for <notmuch@notmuchmail.org>;\r
16         Mon,  2 Apr 2012 01:21:12 -0700 (PDT)\r
17 Received: from outgoing-mail.its.caltech.edu (outgoing-mail.its.caltech.edu\r
18         [131.215.239.19])\r
19         by olra.theworths.org (Postfix) with ESMTP id 76B0F431FD6\r
20         for <notmuch@notmuchmail.org>; Mon,  2 Apr 2012 01:21:03 -0700 (PDT)\r
21 Received: from earth-doxen.imss.caltech.edu (localhost [127.0.0.1])\r
22         by earth-doxen-postvirus (Postfix) with ESMTP id 4360366E00C0\r
23         for <notmuch@notmuchmail.org>; Mon,  2 Apr 2012 01:21:03 -0700 (PDT)\r
24 X-Spam-Scanned: at Caltech-IMSS on earth-doxen by amavisd-new\r
25 Received: from finestructure.net (unknown [76.89.193.65])\r
26         (Authenticated sender: jrollins)\r
27         by earth-doxen-submit (Postfix) with ESMTP id E2A0566E00E3\r
28         for <notmuch@notmuchmail.org>; Mon,  2 Apr 2012 01:20:56 -0700 (PDT)\r
29 Received: by finestructure.net (Postfix, from userid 1000)\r
30         id 8EA2A54F; Mon,  2 Apr 2012 01:20:56 -0700 (PDT)\r
31 From: Jameson Graef Rollins <jrollins@finestructure.net>\r
32 To: Notmuch Mail <notmuch@notmuchmail.org>\r
33 Subject: [PATCH 1/6] emacs: update tag-completion function\r
34 Date: Mon,  2 Apr 2012 01:20:48 -0700\r
35 Message-Id: <1333354853-25729-2-git-send-email-jrollins@finestructure.net>\r
36 X-Mailer: git-send-email 1.7.9.1\r
37 In-Reply-To: <1333354853-25729-1-git-send-email-jrollins@finestructure.net>\r
38 References: <1333354853-25729-1-git-send-email-jrollins@finestructure.net>\r
39 X-BeenThere: notmuch@notmuchmail.org\r
40 X-Mailman-Version: 2.1.13\r
41 Precedence: list\r
42 List-Id: "Use and development of the notmuch mail system."\r
43         <notmuch.notmuchmail.org>\r
44 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
45         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
46 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
47 List-Post: <mailto:notmuch@notmuchmail.org>\r
48 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
49 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
50         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
51 X-List-Received-Date: Mon, 02 Apr 2012 08:21:14 -0000\r
52 \r
53 "search-tags" is deprecated, so we move to the more modern "search\r
54 --output=tags".\r
55 ---\r
56  emacs/notmuch.el |    2 +-\r
57  1 files changed, 1 insertions(+), 1 deletions(-)\r
58 \r
59 diff --git a/emacs/notmuch.el b/emacs/notmuch.el\r
60 index f0afa07..38ae005 100644\r
61 --- a/emacs/notmuch.el\r
62 +++ b/emacs/notmuch.el\r
63 @@ -89,7 +89,7 @@ For example:\r
64     (with-output-to-string\r
65       (with-current-buffer standard-output\r
66         (apply 'call-process notmuch-command nil t\r
67 -             nil "search-tags" search-terms)))\r
68 +             nil "search" "--output=tags" search-terms)))\r
69     "\n+" t))\r
70  \r
71  (defun notmuch-select-tag-with-completion (prompt &rest search-terms)\r
72 -- \r
73 1.7.9.1\r
74 \r