[PATCH] configure: add --without-api-docs option
[notmuch-archives.git] / 1d / df5290815f46ac93d0859c04e129357910c3d3
1 Return-Path: <dme@dme.org>\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 8A763431FAF\r
6         for <notmuch@notmuchmail.org>; Thu, 26 Jan 2012 00:46:12 -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 Q8+JIGwy2XeG for <notmuch@notmuchmail.org>;\r
16         Thu, 26 Jan 2012 00:46:08 -0800 (PST)\r
17 Received: from mail-ww0-f45.google.com (mail-ww0-f45.google.com\r
18  [74.125.82.45])        (using TLSv1 with cipher RC4-SHA (128/128 bits))        (No client\r
19  certificate requested) by olra.theworths.org (Postfix) with ESMTPS id\r
20  33EEE431FAE    for <notmuch@notmuchmail.org>; Thu, 26 Jan 2012 00:46:08 -0800\r
21  (PST)\r
22 Received: by wgbdt12 with SMTP id dt12so280790wgb.2\r
23         for <notmuch@notmuchmail.org>; Thu, 26 Jan 2012 00:46:07 -0800 (PST)\r
24 Received: by 10.180.81.35 with SMTP id w3mr1814721wix.10.1327567566973;\r
25         Thu, 26 Jan 2012 00:46:06 -0800 (PST)\r
26 Received: from hotblack-desiato.hh.sledj.net\r
27         (host81-149-164-25.in-addr.btopenworld.com. [81.149.164.25])\r
28         by mx.google.com with ESMTPS id l6sm4127151wiv.11.2012.01.26.00.46.05\r
29         (version=TLSv1/SSLv3 cipher=OTHER);\r
30         Thu, 26 Jan 2012 00:46:05 -0800 (PST)\r
31 Received: by hotblack-desiato.hh.sledj.net (Postfix, from userid 30000)\r
32         id DFBA29FD9F; Thu, 26 Jan 2012 08:46:03 +0000 (GMT)\r
33 To: Dmitry Kurochkin <dmitry.kurochkin@gmail.com>,\r
34         Austin Clements <amdragon@MIT.EDU>, notmuch@notmuchmail.org\r
35 Subject: Re: [PATCH] emacs: add completion to "tag all" operation ("*"\r
36  binding)\r
37 In-Reply-To: <87wr8fqlpg.fsf@gmail.com>\r
38 References: <1327540351-5249-1-git-send-email-dmitry.kurochkin@gmail.com>\r
39         <20120126013727.GB1176@mit.edu> <87wr8fqlpg.fsf@gmail.com>\r
40 User-Agent: Notmuch/0.11+114~g550724b (http://notmuchmail.org) Emacs/24.0.92.1\r
41         (x86_64-pc-linux-gnu)\r
42 From: David Edmondson <dme@dme.org>\r
43 Date: Thu, 26 Jan 2012 08:46:00 +0000\r
44 Message-ID: <cunobtqlulz.fsf@hotblack-desiato.hh.sledj.net>\r
45 MIME-Version: 1.0\r
46 Content-Type: multipart/signed; boundary="=-=-=";\r
47         micalg=pgp-sha1; protocol="application/pgp-signature"\r
48 X-BeenThere: notmuch@notmuchmail.org\r
49 X-Mailman-Version: 2.1.13\r
50 Precedence: list\r
51 List-Id: "Use and development of the notmuch mail system."\r
52         <notmuch.notmuchmail.org>\r
53 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
54         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
55 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
56 List-Post: <mailto:notmuch@notmuchmail.org>\r
57 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
58 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
59         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
60 X-List-Received-Date: Thu, 26 Jan 2012 08:46:15 -0000\r
61 \r
62 --=-=-=\r
63 Content-Type: text/plain\r
64 Content-Transfer-Encoding: quoted-printable\r
65 \r
66 On Thu, 26 Jan 2012 05:47:07 +0400, Dmitry Kurochkin <dmitry.kurochkin@gmai=\r
67 l.com> wrote:\r
68 > > > +  ;; Perform some validation\r
69 > > > +  (let ((words action))\r
70 > > > +    (when (null words) (error "No operation given"))\r
71 > > > +    (while words\r
72 > > > +      (unless (string-match-p "^[-+][-+_.[:word:]]+$" (car words))\r
73 > > > + (error "Action must be of the form `+thistag -that_tag'"))\r
74 > > > +      (setq words (cdr words))))\r
75 > >=20\r
76 > > This should really be a mapc or a dolist, but maybe that's for another\r
77 > > patch.\r
78 >=20\r
79 > Yes, I changed "this_tag" spelling in v2, but would prefer to leave\r
80 > non-trivial changes in this code for another patch.\r
81 \r
82 If you were going to submit another patch then fine, but the chances are\r
83 it will just get forgotten.\r
84 \r
85 --=-=-=\r
86 Content-Type: application/pgp-signature\r
87 \r
88 -----BEGIN PGP SIGNATURE-----\r
89 Version: GnuPG v1.4.11 (GNU/Linux)\r
90 \r
91 iEYEARECAAYFAk8hEsgACgkQaezQq/BJZRb7lQCcDunr5BSWhn05WUQ3DPccHNku\r
92 jd8An3OIzrujNMKdFXJmBqzsfeXaNfO1\r
93 =nxTf\r
94 -----END PGP SIGNATURE-----\r
95 --=-=-=--\r