Re: [PATCH v4 13/16] add indexopts to notmuch python bindings.
[notmuch-archives.git] / 6e / e80918140658f0821ee0cee1d6c05ba16a4f39
1 Return-Path: <bremner@tethera.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 6D1A6431FC3\r
6         for <notmuch@notmuchmail.org>; Sat,  8 Dec 2012 14:57:51 -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\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
12         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 bv8wQVIg2rvW for <notmuch@notmuchmail.org>;\r
16         Sat,  8 Dec 2012 14:57:50 -0800 (PST)\r
17 Received: from tesseract.cs.unb.ca (tesseract.cs.unb.ca [131.202.240.238])\r
18         (using TLSv1 with cipher AES256-SHA (256/256 bits))\r
19         (No client certificate requested)\r
20         by olra.theworths.org (Postfix) with ESMTPS id D40CB431FD8\r
21         for <notmuch@notmuchmail.org>; Sat,  8 Dec 2012 14:57:42 -0800 (PST)\r
22 Received: from fctnnbsc30w-142167090129.dhcp-dynamic.fibreop.nb.bellaliant.net\r
23         ([142.167.90.129] helo=zancas.localnet)\r
24         by tesseract.cs.unb.ca with esmtpsa\r
25         (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72)\r
26         (envelope-from <bremner@tethera.net>)\r
27         id 1ThTL3-00066i-UX; Sat, 08 Dec 2012 18:57:42 -0400\r
28 Received: from bremner by zancas.localnet with local (Exim 4.80)\r
29         (envelope-from <bremner@tethera.net>)\r
30         id 1ThTKy-0000qm-Ci; Sat, 08 Dec 2012 18:57:36 -0400\r
31 From: david@tethera.net\r
32 To: notmuch@notmuchmail.org\r
33 Subject: [Patch v5 06/11] notmuch-restore: normalize case of error messages.\r
34 Date: Sat,  8 Dec 2012 18:56:56 -0400\r
35 Message-Id: <1355007421-3069-7-git-send-email-david@tethera.net>\r
36 X-Mailer: git-send-email 1.7.10.4\r
37 In-Reply-To: <1355007421-3069-1-git-send-email-david@tethera.net>\r
38 References: <1355007421-3069-1-git-send-email-david@tethera.net>\r
39 X-Spam_bar: -\r
40 Cc: David Bremner <bremner@debian.org>\r
41 X-BeenThere: notmuch@notmuchmail.org\r
42 X-Mailman-Version: 2.1.13\r
43 Precedence: list\r
44 List-Id: "Use and development of the notmuch mail system."\r
45         <notmuch.notmuchmail.org>\r
46 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
47         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
48 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
49 List-Post: <mailto:notmuch@notmuchmail.org>\r
50 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
51 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
52         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
53 X-List-Received-Date: Sat, 08 Dec 2012 22:57:51 -0000\r
54 \r
55 From: David Bremner <bremner@debian.org>\r
56 \r
57 In English, (unlike German) one does not capitalize the first word\r
58 after a colon.\r
59 ---\r
60  notmuch-restore.c |    4 ++--\r
61  1 file changed, 2 insertions(+), 2 deletions(-)\r
62 \r
63 diff --git a/notmuch-restore.c b/notmuch-restore.c\r
64 index 44bf88d..dba882b 100644\r
65 --- a/notmuch-restore.c\r
66 +++ b/notmuch-restore.c\r
67 @@ -39,7 +39,7 @@ tag_message (unused (void *ctx),\r
68  \r
69      status = notmuch_database_find_message (notmuch, message_id, &message);\r
70      if (status || message == NULL) {\r
71 -       fprintf (stderr, "Warning: Cannot apply tags to %smessage: %s\n",\r
72 +       fprintf (stderr, "Warning: cannot apply tags to %smessage: %s\n",\r
73                  message ? "" : "missing ", message_id);\r
74         if (status)\r
75             fprintf (stderr, "%s\n", notmuch_status_to_string (status));\r
76 @@ -214,7 +214,7 @@ notmuch_restore_command (unused (void *ctx), int argc, char *argv[])\r
77  \r
78             if (ret == 0) {\r
79                 if (strncmp ("id:", query_string, 3) != 0) {\r
80 -                   fprintf (stderr, "Unsupported query: %s\n", query_string);\r
81 +                   fprintf (stderr, "Warning: unsupported query: %s\n", query_string);\r
82                     continue;\r
83                 }\r
84                 /* delete id: from front of string; tag_message\r
85 -- \r
86 1.7.10.4\r
87 \r