[PATCH 4/5] fixed more wrongly initialized constants
authorlaochailan <laochailan@web.de>
Sun, 31 May 2015 12:02:14 +0000 (14:02 +0200)
committerW. Trevor King <wking@tremily.us>
Sat, 20 Aug 2016 21:48:56 +0000 (14:48 -0700)
51/6ff9bdd9d5e7fbef6032f76152513863898276 [new file with mode: 0644]

diff --git a/51/6ff9bdd9d5e7fbef6032f76152513863898276 b/51/6ff9bdd9d5e7fbef6032f76152513863898276
new file mode 100644 (file)
index 0000000..1835c2a
--- /dev/null
@@ -0,0 +1,83 @@
+Return-Path: <laochailan@web.de>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+ by arlo.cworth.org (Postfix) with ESMTP id 938966DE17B5\r
+ for <notmuch@notmuchmail.org>; Sun, 31 May 2015 05:07:59 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at cworth.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: -0.568\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=-0.568 tagged_above=-999 required=5 tests=[AWL=0.002,\r
+  FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H3=-0.01,\r
+ RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.55, SPF_PASS=-0.001]\r
+ autolearn=disabled\r
+Received: from arlo.cworth.org ([127.0.0.1])\r
+ by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024)\r
+ with ESMTP id yY9VEAPGZhBy for <notmuch@notmuchmail.org>;\r
+ Sun, 31 May 2015 05:07:58 -0700 (PDT)\r
+Received: from mout.web.de (mout.web.de [212.227.15.3])\r
+ by arlo.cworth.org (Postfix) with ESMTPS id A22F36DE17A3\r
+ for <notmuch@notmuchmail.org>; Sun, 31 May 2015 05:07:57 -0700 (PDT)\r
+Received: from localhost ([92.204.48.23]) by smtp.web.de (mrweb003) with\r
+ ESMTPSA (Nemesis) id 0MHGdf-1YuJ7R04fr-00E9gg; Sun, 31 May 2015 14:02:50\r
+ +0200\r
+From: laochailan <laochailan@web.de>\r
+To: notmuch@notmuchmail.org\r
+Subject: [PATCH 4/5] fixed more wrongly initialized constants\r
+Date: Sun, 31 May 2015 14:02:14 +0200\r
+Message-Id: <1433073735-7721-5-git-send-email-laochailan@web.de>\r
+X-Mailer: git-send-email 2.4.2\r
+In-Reply-To: <1433073735-7721-1-git-send-email-laochailan@web.de>\r
+References: <1433073735-7721-1-git-send-email-laochailan@web.de>\r
+X-Provags-ID: V03:K0:TXoT6VO4eRXpWkn0UVyp1WrJHbh1ffublExXp1AZy3e6r5IrMRe\r
+ 2el28ULZmji9NFCr37AjzTRmHzbrKTa+QKiLBipQ5U8Iyh/tEk8O1WJ2Gc34bxhpPowiMLf\r
+ hyqZELaY7+x2zD2YN26bZNOOzgfxJzwox1jL1y5jNOLXP7GvmIn73IyTYZeC4rlLBDlXegm\r
+ XHWtTnEmYDkJLWit+XEVg==\r
+X-UI-Out-Filterresults: notjunk:1;\r
+X-Mailman-Approved-At: Mon, 01 Jun 2015 09:14:44 -0700\r
+Cc: laochailan <laochailan@web.de>\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.18\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+ <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Sun, 31 May 2015 12:07:59 -0000\r
+\r
+In Go, '= 0' at the beginning means everything is set to zero.\r
+---\r
+ bindings/go/src/notmuch/notmuch.go | 4 ++--\r
+ 1 file changed, 2 insertions(+), 2 deletions(-)\r
+\r
+diff --git a/bindings/go/src/notmuch/notmuch.go b/bindings/go/src/notmuch/notmuch.go\r
+index 741fabf..d664287 100644\r
+--- a/bindings/go/src/notmuch/notmuch.go\r
++++ b/bindings/go/src/notmuch/notmuch.go\r
+@@ -378,7 +378,7 @@ func (self *Database) CreateQuery(query string) *Query {\r
+ type Sort C.notmuch_sort_t\r
\r
+ const (\r
+-      SORT_OLDEST_FIRST Sort = 0\r
++      SORT_OLDEST_FIRST Sort = iota\r
+       SORT_NEWEST_FIRST\r
+       SORT_MESSAGE_ID\r
+       SORT_UNSORTED\r
+@@ -985,7 +985,7 @@ func (self *Message) GetFileName() string {\r
+ type Flag C.notmuch_message_flag_t\r
\r
+ const (\r
+-      MESSAGE_FLAG_MATCH Flag = 0\r
++      MESSAGE_FLAG_MATCH Flag = iota\r
+ )\r
\r
+ // Get a value of a flag for the email corresponding to 'message'.\r
+-- \r
+2.4.2\r
+\r