[PATCH] configure: add --without-api-docs option
[notmuch-archives.git] / b1 / efe5260f491465ea69fb22c940ea1a60b884ca
1 Return-Path: <novalazy@gmail.com>\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 25EC5431FC3\r
6         for <notmuch@notmuchmail.org>; Thu, 24 Jan 2013 04:09:27 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: -0.799\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-0.799 tagged_above=-999 required=5\r
12         tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1,\r
13         FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled\r
14 Received: from olra.theworths.org ([127.0.0.1])\r
15         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
16         with ESMTP id vTORbu9jXZ1X for <notmuch@notmuchmail.org>;\r
17         Thu, 24 Jan 2013 04:09:26 -0800 (PST)\r
18 Received: from mail-pb0-f44.google.com (mail-pb0-f44.google.com\r
19         [209.85.160.44]) (using TLSv1 with cipher RC4-SHA (128/128 bits))\r
20         (No client certificate requested)\r
21         by olra.theworths.org (Postfix) with ESMTPS id 3B78B431FD2\r
22         for <notmuch@notmuchmail.org>; Thu, 24 Jan 2013 04:09:25 -0800 (PST)\r
23 Received: by mail-pb0-f44.google.com with SMTP id uo1so5374035pbc.31\r
24         for <notmuch@notmuchmail.org>; Thu, 24 Jan 2013 04:09:24 -0800 (PST)\r
25 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113;\r
26         h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to\r
27         :references; bh=tBepm0XxkPcJupQVQTPdClVDY+76BaoMPvlO0Y6wxeQ=;\r
28         b=N3JOfMnl1B/R/ro7lWeCxyc6Cr1T/tJBkTT/zRED2TZKKZ46UsBA3HdFxvn4NP/1Jl\r
29         +wk3dANAOcygKCtrysenTQNIVaoMsze5N98zfq4V42qZS8qIuHo3HsvFYGJTQtjyf045\r
30         GX0gOykh5NBVjY2zgduZdjkqHY4Yugr6d3ofggrvvVAUrLU3C8HTbxVyAAw8yitGFe8R\r
31         2AC7E9mUZearYwTmVUnvuSvd8SBY1s0fLEJUhDvAXebzTf53JUINt0vbqpK5VTVgzIqq\r
32         gOBPXKLgmiZKcR0V1F2cfNW9uj2k+dre22Bol8MHZyAiuy//+pyA9yXzB31rBhSzDBRi\r
33         FLWw==\r
34 X-Received: by 10.68.222.196 with SMTP id qo4mr4083338pbc.140.1359029364420;\r
35         Thu, 24 Jan 2013 04:09:24 -0800 (PST)\r
36 Received: from localhost (215.42.233.220.static.exetel.com.au.\r
37         [220.233.42.215])\r
38         by mx.google.com with ESMTPS id wh8sm14770881pbc.75.2013.01.24.04.09.22\r
39         (version=TLSv1.2 cipher=RC4-SHA bits=128/128);\r
40         Thu, 24 Jan 2013 04:09:23 -0800 (PST)\r
41 From: Peter Wang <novalazy@gmail.com>\r
42 To: notmuch@notmuchmail.org\r
43 Subject: [PATCH v4 02/12] tag-util: do not reset list in\r
44  parse_tag_command_line\r
45 Date: Thu, 24 Jan 2013 23:07:58 +1100\r
46 Message-Id: <1359029288-12132-3-git-send-email-novalazy@gmail.com>\r
47 X-Mailer: git-send-email 1.7.12.1\r
48 In-Reply-To: <1359029288-12132-1-git-send-email-novalazy@gmail.com>\r
49 References: <1359029288-12132-1-git-send-email-novalazy@gmail.com>\r
50 X-BeenThere: notmuch@notmuchmail.org\r
51 X-Mailman-Version: 2.1.13\r
52 Precedence: list\r
53 List-Id: "Use and development of the notmuch mail system."\r
54         <notmuch.notmuchmail.org>\r
55 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
56         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
57 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
58 List-Post: <mailto:notmuch@notmuchmail.org>\r
59 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
60 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
61         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
62 X-List-Received-Date: Thu, 24 Jan 2013 12:09:27 -0000\r
63 \r
64 No current callers of parse_tag_command_line require that it clear its\r
65 tag list argument.  The notmuch 'insert' command will be better served\r
66 if the function modifies a pre-populated list (of new.tags) instead of\r
67 clobbering it outright.\r
68 ---\r
69  tag-util.c | 2 --\r
70  tag-util.h | 2 ++\r
71  2 files changed, 2 insertions(+), 2 deletions(-)\r
72 \r
73 diff --git a/tag-util.c b/tag-util.c\r
74 index 743d591..b57ee32 100644\r
75 --- a/tag-util.c\r
76 +++ b/tag-util.c\r
77 @@ -165,8 +165,6 @@ parse_tag_command_line (void *ctx, int argc, char **argv,\r
78  \r
79      int i;\r
80  \r
81 -    tag_op_list_reset (tag_ops);\r
82 -\r
83      for (i = 0; i < argc; i++) {\r
84         if (strcmp (argv[i], "--") == 0) {\r
85             i++;\r
86 diff --git a/tag-util.h b/tag-util.h\r
87 index 246de85..4628f16 100644\r
88 --- a/tag-util.h\r
89 +++ b/tag-util.h\r
90 @@ -81,6 +81,8 @@ parse_tag_line (void *ctx, char *line,\r
91   * Output Parameters:\r
92   *     ops     contains a list of tag operations\r
93   *     query_str the search terms.\r
94 + *\r
95 + * The ops argument is not cleared.\r
96   */\r
97  \r
98  tag_parse_status_t\r
99 -- \r
100 1.7.12.1\r
101 \r