Re: [PATCH v4 13/16] add indexopts to notmuch python bindings.
[notmuch-archives.git] / 3b / aa99a6c0c4961a35666bd9085989e76f82d163
1 Return-Path: <bremner@pivot.cs.unb.ca>\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 F236A418C3C\r
6         for <notmuch@notmuchmail.org>; Sat, 24 Apr 2010 04:45:24 -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: -1.9\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-1.9 tagged_above=-999 required=5\r
12         tests=[BAYES_00=-1.9] autolearn=ham\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 F7aBiPjo7ERL for <notmuch@notmuchmail.org>;\r
16         Sat, 24 Apr 2010 04:45:24 -0700 (PDT)\r
17 Received: from pivot.cs.unb.ca (pivot.cs.unb.ca [131.202.240.57])\r
18         by olra.theworths.org (Postfix) with ESMTP id 62EF0431FC1\r
19         for <notmuch@notmuchmail.org>; Sat, 24 Apr 2010 04:45:24 -0700 (PDT)\r
20 Received: from\r
21         fctnnbsc30w-142167190087.pppoe-dynamic.high-speed.nb.bellaliant.net\r
22         ([142.167.190.87] helo=rocinante.cs.unb.ca)\r
23         by pivot.cs.unb.ca with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32)\r
24         (Exim 4.69) (envelope-from <bremner@pivot.cs.unb.ca>)\r
25         id 1O5dnX-00030h-VH; Sat, 24 Apr 2010 08:45:24 -0300\r
26 Received: from bremner by rocinante.cs.unb.ca with local (Exim 4.71)\r
27         (envelope-from <bremner@rocinante.cs.unb.ca>)\r
28         id 1O5dn1-0005Qc-GQ; Sat, 24 Apr 2010 08:44:51 -0300\r
29 From: david@tethera.net\r
30 To: notmuch@notmuchmail.org\r
31 Subject: [PATCH 1/3] remove stale "unused" from around argv and argc in\r
32         notmuch_show_command.\r
33 Date: Sat, 24 Apr 2010 08:44:36 -0300\r
34 Message-Id: <1272109478-20686-2-git-send-email-david@tethera.net>\r
35 X-Mailer: git-send-email 1.7.0\r
36 In-Reply-To: <1272109478-20686-1-git-send-email-david@tethera.net>\r
37 References: <1272109478-20686-1-git-send-email-david@tethera.net>\r
38 X-Sender-Verified: bremner@pivot.cs.unb.ca\r
39 Cc: David Bremner <bremner@unb.ca>\r
40 X-BeenThere: notmuch@notmuchmail.org\r
41 X-Mailman-Version: 2.1.13\r
42 Precedence: list\r
43 List-Id: "Use and development of the notmuch mail system."\r
44         <notmuch.notmuchmail.org>\r
45 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
46         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
47 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
48 List-Post: <mailto:notmuch@notmuchmail.org>\r
49 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
50 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
51         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
52 X-List-Received-Date: Sat, 24 Apr 2010 11:45:25 -0000\r
53 \r
54 From: David Bremner <bremner@unb.ca>\r
55 \r
56 In fact argc and argv are used in this function.\r
57 ---\r
58  notmuch-show.c |    2 +-\r
59  1 files changed, 1 insertions(+), 1 deletions(-)\r
60 \r
61 diff --git a/notmuch-show.c b/notmuch-show.c\r
62 index 26449fa..6aa9072 100644\r
63 --- a/notmuch-show.c\r
64 +++ b/notmuch-show.c\r
65 @@ -403,7 +403,7 @@ show_messages (void *ctx, const show_format_t *format, notmuch_messages_t *messa\r
66  }\r
67  \r
68  int\r
69 -notmuch_show_command (void *ctx, unused (int argc), unused (char *argv[]))\r
70 +notmuch_show_command (void *ctx, int argc, char *argv[])\r
71  {\r
72      notmuch_config_t *config;\r
73      notmuch_database_t *notmuch;\r
74 -- \r
75 1.7.0\r
76 \r