Re: [PATCH] Fix typo in Message.maildir_flags_to_tags
[notmuch-archives.git] / af / bb4225d3f4dbe0a6ce70f0edcec6fd4f12389e
1 Return-Path: <novalazy@gmail.com>\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 A1F61431FAF\r
6         for <notmuch@notmuchmail.org>; Sat, 24 Nov 2012 17:18:07 -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.799\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-0.799 tagged_above=-999 required=5\r
12         tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1,\r
13         FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled\r
14 Received: from olra.theworths.org ([127.0.0.1])\r
15         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
16         with ESMTP id rf2XotP78riA for <notmuch@notmuchmail.org>;\r
17         Sat, 24 Nov 2012 17:18:07 -0800 (PST)\r
18 Received: from mail-pb0-f53.google.com (mail-pb0-f53.google.com\r
19         [209.85.160.53]) (using TLSv1 with cipher RC4-SHA (128/128 bits))\r
20         (No client certificate requested)\r
21         by olra.theworths.org (Postfix) with ESMTPS id 243D1431FAE\r
22         for <notmuch@notmuchmail.org>; Sat, 24 Nov 2012 17:18:07 -0800 (PST)\r
23 Received: by mail-pb0-f53.google.com with SMTP id jt11so7944513pbb.26\r
24         for <notmuch@notmuchmail.org>; Sat, 24 Nov 2012 17:18:06 -0800 (PST)\r
25 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113;\r
26         h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references;\r
27         bh=YOMokdKYA8DYzsQF25kQJ9Ay494Tn9UWiKnCJG815GI=;\r
28         b=SyIAJ351q41bIGA/zdBVbEQSfi3iQUfP20qrwEv0PgphFe54AminWwdVJ2k/r5GNZU\r
29         im6SX+zV0wWEf9MCpNzKskSYQRkquA1JDwnKj/xgYr59in8SlwFjZ+LII+dQ6K7rCibK\r
30         mdhoQcg8DtnYwOthTBeNO9LpZdw8eLN2TxlKILlYBNN7hPPzbq/5fQws2pCivvAOn+QN\r
31         cbE0TDHNuX+8RBGyzRRQgNBFen7L+MBMx2I/DL7gfp8sX5sUGSEzGXDcVqMqH6Cs+Yat\r
32         BD9SgvQ2har8QNLbm6vkvBjMjYSOxLsvA1PVNGiKRV7in0ZgEmcjyd5B5HWdMOjqJYIE\r
33         woxA==\r
34 Received: by 10.68.234.167 with SMTP id uf7mr26444347pbc.20.1353806286903;\r
35         Sat, 24 Nov 2012 17:18:06 -0800 (PST)\r
36 Received: from localhost (215.42.233.220.static.exetel.com.au.\r
37         [220.233.42.215])\r
38         by mx.google.com with ESMTPS id p5sm5944688paz.22.2012.11.24.17.18.04\r
39         (version=TLSv1/SSLv3 cipher=OTHER);\r
40         Sat, 24 Nov 2012 17:18:05 -0800 (PST)\r
41 From: Peter Wang <novalazy@gmail.com>\r
42 To: notmuch@notmuchmail.org\r
43 Subject: [PATCH v2 11/20] insert: parse command-line tag operations\r
44 Date: Sun, 25 Nov 2012 12:16:37 +1100\r
45 Message-Id: <1353806206-29133-12-git-send-email-novalazy@gmail.com>\r
46 X-Mailer: git-send-email 1.7.12.1\r
47 In-Reply-To: <1353806206-29133-1-git-send-email-novalazy@gmail.com>\r
48 References: <1353806206-29133-1-git-send-email-novalazy@gmail.com>\r
49 X-BeenThere: notmuch@notmuchmail.org\r
50 X-Mailman-Version: 2.1.13\r
51 Precedence: list\r
52 List-Id: "Use and development of the notmuch mail system."\r
53         <notmuch.notmuchmail.org>\r
54 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
55         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
56 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
57 List-Post: <mailto:notmuch@notmuchmail.org>\r
58 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
59 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
60         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
61 X-List-Received-Date: Sun, 25 Nov 2012 01:18:07 -0000\r
62 \r
63 Reuse the parser in notmuch-tag.c to parse +tag and -tag\r
64 operations on the 'insert' command-line.\r
65 ---\r
66  notmuch-insert.c | 23 +++++++++++++++++++++++\r
67  1 file changed, 23 insertions(+)\r
68 \r
69 diff --git a/notmuch-insert.c b/notmuch-insert.c\r
70 index 362da66..e4631a2 100644\r
71 --- a/notmuch-insert.c\r
72 +++ b/notmuch-insert.c\r
73 @@ -262,6 +262,8 @@ notmuch_insert_command (void *ctx, int argc, char *argv[])\r
74      const char **new_tags;\r
75      size_t new_tags_length;\r
76      const char *folder = NULL;\r
77 +    notmuch_tag_operation_t *tag_ops;\r
78 +    int tag_ops_count;\r
79      char *maildir;\r
80      int opt_index;\r
81      notmuch_bool_t ret;\r
82 @@ -279,6 +281,27 @@ notmuch_insert_command (void *ctx, int argc, char *argv[])\r
83         return 1;\r
84      }\r
85  \r
86 +    /* Array of tagging operations (add or remove), terminated with an\r
87 +     * empty element. */\r
88 +    tag_ops = talloc_array (ctx, notmuch_tag_operation_t, argc - opt_index + 1);\r
89 +    if (tag_ops == NULL) {\r
90 +       fprintf (stderr, "Out of memory.\n");\r
91 +       return 1;\r
92 +    }\r
93 +\r
94 +    opt_index = parse_tag_operations (opt_index, argc, argv,\r
95 +                                     tag_ops, &tag_ops_count);\r
96 +    if (opt_index < 0)\r
97 +       return 1;\r
98 +\r
99 +    tag_ops[tag_ops_count].tag = NULL;\r
100 +\r
101 +    if (opt_index != argc) {\r
102 +       fprintf (stderr, "Error: bad argument to notmuch insert: %s\n",\r
103 +                argv[opt_index]);\r
104 +       return 1;\r
105 +    }\r
106 +\r
107      config = notmuch_config_open (ctx, NULL, NULL);\r
108      if (config == NULL)\r
109         return 1;\r
110 -- \r
111 1.7.12.1\r
112 \r