Improving face customization in notmuch.el
[notmuch-archives.git] / f0 / 50ec9eb8ba6ed82e54bbb9cd0ffacc8d4f400b
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 arlo.cworth.org (Postfix) with ESMTP id 833EC6DE1744\r
6  for <notmuch@notmuchmail.org>; Mon,  7 Sep 2015 06:34:06 -0700 (PDT)\r
7 X-Virus-Scanned: Debian amavisd-new at cworth.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: 2.739\r
10 X-Spam-Level: **\r
11 X-Spam-Status: No, score=2.739 tagged_above=-999 required=5 tests=[AWL=-0.951,\r
12   RCVD_IN_BRBL_LASTEXT=1.644, RCVD_IN_SBL=2.596, RP_MATCHES_RCVD=-0.55]\r
13  autolearn=disabled\r
14 Received: from arlo.cworth.org ([127.0.0.1])\r
15  by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024)\r
16  with ESMTP id VzL1bjj3oDef for <notmuch@notmuchmail.org>;\r
17  Mon,  7 Sep 2015 06:34:04 -0700 (PDT)\r
18 Received: from yantan.tethera.net (yantan.tethera.net [199.188.72.155])\r
19  by arlo.cworth.org (Postfix) with ESMTPS id CACF86DE140C\r
20  for <notmuch@notmuchmail.org>; Mon,  7 Sep 2015 06:34:04 -0700 (PDT)\r
21 Received: from remotemail by yantan.tethera.net with local (Exim 4.80)\r
22  (envelope-from <bremner@tethera.net>)\r
23  id 1ZYwYe-0002wM-52; Mon, 07 Sep 2015 10:34:04 -0300\r
24 Received: (nullmailer pid 22530 invoked by uid 1000); Mon, 07 Sep 2015\r
25  13:34:00 -0000\r
26 From: David Bremner <david@tethera.net>\r
27 To: notmuch@notmuchmail.org\r
28 Subject: [PATCH 2/2] cli/count: apply uncrustify changes\r
29 Date: Mon,  7 Sep 2015 10:33:38 -0300\r
30 Message-Id: <1441632818-22483-2-git-send-email-david@tethera.net>\r
31 X-Mailer: git-send-email 2.5.1\r
32 In-Reply-To: <1441632818-22483-1-git-send-email-david@tethera.net>\r
33 References: <1441632818-22483-1-git-send-email-david@tethera.net>\r
34 X-BeenThere: notmuch@notmuchmail.org\r
35 X-Mailman-Version: 2.1.18\r
36 Precedence: list\r
37 List-Id: "Use and development of the notmuch mail system."\r
38  <notmuch.notmuchmail.org>\r
39 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
40  <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
41 List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
42 List-Post: <mailto:notmuch@notmuchmail.org>\r
43 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
44 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
45  <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
46 X-List-Received-Date: Mon, 07 Sep 2015 13:34:06 -0000\r
47 \r
48 ---\r
49  notmuch-count.c | 6 +++---\r
50  1 file changed, 3 insertions(+), 3 deletions(-)\r
51 \r
52 diff --git a/notmuch-count.c b/notmuch-count.c\r
53 index 66f5e53..a844384 100644\r
54 --- a/notmuch-count.c\r
55 +++ b/notmuch-count.c\r
56 @@ -117,7 +117,7 @@ count_file (notmuch_database_t *notmuch, FILE *input, const char **exclude_tags,\r
57      size_t line_size;\r
58      int ret = 0;\r
59  \r
60 -    while (!ret && (line_len = getline (&line, &line_size, input)) != -1) {\r
61 +    while (! ret && (line_len = getline (&line, &line_size, input)) != -1) {\r
62         chomp_newline (line);\r
63         ret = print_count (notmuch, line, exclude_tags, exclude_tags_length,\r
64                            output, print_lastmod);\r
65 @@ -189,7 +189,7 @@ notmuch_count_command (notmuch_config_t *config, int argc, char *argv[])\r
66  \r
67      notmuch_exit_if_unmatched_db_uuid (notmuch);\r
68  \r
69 -    query_str = query_string_from_args (config, argc-opt_index, argv+opt_index);\r
70 +    query_str = query_string_from_args (config, argc - opt_index, argv + opt_index);\r
71      if (query_str == NULL) {\r
72         fprintf (stderr, "Out of memory.\n");\r
73         return EXIT_FAILURE;\r
74 @@ -197,7 +197,7 @@ notmuch_count_command (notmuch_config_t *config, int argc, char *argv[])\r
75  \r
76      if (exclude == EXCLUDE_TRUE) {\r
77         search_exclude_tags = notmuch_config_get_search_exclude_tags\r
78 -           (config, &search_exclude_tags_length);\r
79 +                                 (config, &search_exclude_tags_length);\r
80      }\r
81  \r
82      if (batch)\r
83 -- \r
84 2.5.1\r
85 \r