Re: [PATCH] notmuch-emacs-mua: make --auto-daemon imply --create-frame
[notmuch-archives.git] / 17 / 6493cfe435fb9602544f32f6bebe4b78e1b252
1 Return-Path: <aidecoe@aidecoe.name>\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 74684429E28\r
6         for <notmuch@notmuchmail.org>; Fri, 25 Nov 2011 02:55:15 -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.7\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5\r
12         tests=[RCVD_IN_DNSWL_LOW=-0.7] 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 59Ti44yiBlA6 for <notmuch@notmuchmail.org>;\r
16         Fri, 25 Nov 2011 02:55:14 -0800 (PST)\r
17 Received: from mail-bw0-f53.google.com (mail-bw0-f53.google.com\r
18         [209.85.214.53]) (using TLSv1 with cipher RC4-SHA (128/128 bits))\r
19         (No client certificate requested)\r
20         by olra.theworths.org (Postfix) with ESMTPS id DA2D8429E26\r
21         for <notmuch@notmuchmail.org>; Fri, 25 Nov 2011 02:55:12 -0800 (PST)\r
22 Received: by mail-bw0-f53.google.com with SMTP id q10so4563796bka.26\r
23         for <notmuch@notmuchmail.org>; Fri, 25 Nov 2011 02:55:12 -0800 (PST)\r
24 Received: by 10.204.152.196 with SMTP id h4mr32933037bkw.1.1322218512466;\r
25         Fri, 25 Nov 2011 02:55:12 -0800 (PST)\r
26 Received: from localhost (abtw56.neoplus.adsl.tpnet.pl. [83.8.168.56])\r
27         by mx.google.com with ESMTPS id l5sm14960190bkv.9.2011.11.25.02.55.10\r
28         (version=TLSv1/SSLv3 cipher=OTHER);\r
29         Fri, 25 Nov 2011 02:55:11 -0800 (PST)\r
30 From: =?UTF-8?q?Amadeusz=20=C5=BBo=C5=82nowski?= <aidecoe@aidecoe.name>\r
31 To: notmuch@notmuchmail.org\r
32 Subject: [PATCH 2/2] Fixed warnings for test/symbol-test.cc.\r
33 Date: Fri, 25 Nov 2011 11:54:52 +0100\r
34 Message-Id: <1322218492-8300-2-git-send-email-aidecoe@aidecoe.name>\r
35 X-Mailer: git-send-email 1.7.8.rc3\r
36 In-Reply-To: <1322218492-8300-1-git-send-email-aidecoe@aidecoe.name>\r
37 References: <1322218492-8300-1-git-send-email-aidecoe@aidecoe.name>\r
38 Cc: =?UTF-8?q?Amadeusz=20=C5=BBo=C5=82nowski?= <aidecoe@aidecoe.name>\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: Fri, 25 Nov 2011 10:55:16 -0000\r
52 \r
53 ---\r
54  test/symbol-test.cc |    9 ++++-----\r
55  1 files changed, 4 insertions(+), 5 deletions(-)\r
56 \r
57 diff --git a/test/symbol-test.cc b/test/symbol-test.cc\r
58 index 1de06ea..bfbe38f 100644\r
59 --- a/test/symbol-test.cc\r
60 +++ b/test/symbol-test.cc\r
61 @@ -1,14 +1,13 @@\r
62  #include <stdio.h>\r
63  #include <xapian.h>\r
64  #include <notmuch.h>\r
65 -main (int argc, char **argv){\r
66 +int main (){\r
67  \r
68 -    notmuch_database_t *notmuch\r
69 -      = notmuch_database_open ("fakedb",\r
70 -                                    NOTMUCH_DATABASE_MODE_READ_ONLY);\r
71 +  //notmuch_database_t *notmuch =\r
72 +  notmuch_database_open ("fakedb", NOTMUCH_DATABASE_MODE_READ_ONLY);\r
73  \r
74    try{\r
75 -    (void)new Xapian::WritableDatabase ("./nonexistant",                                       Xapian::DB_OPEN);\r
76 +    (void)new Xapian::WritableDatabase ("./nonexistant", Xapian::DB_OPEN);\r
77    } catch (const Xapian::Error &error) {\r
78      printf("caught %s\n",error.get_msg().c_str());\r
79      return 0;\r
80 -- \r
81 1.7.8.rc3\r
82 \r