[PATCH] configure: add --without-api-docs option
[notmuch-archives.git] / cc / da4b8c3160e533379f5ed65601ff9358031db4
1 Return-Path: <tomi.ollila@iki.fi>\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 51C19431FAF\r
6         for <notmuch@notmuchmail.org>; Mon, 26 Mar 2012 23:19:38 -0700 (PDT)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: 0\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
12         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 dFXtwX6UTmOB for <notmuch@notmuchmail.org>;\r
16         Mon, 26 Mar 2012 23:19:37 -0700 (PDT)\r
17 Received: from guru.guru-group.fi (guru-group.fi [87.108.86.66])\r
18         by olra.theworths.org (Postfix) with ESMTP id 69F9D431FAE\r
19         for <notmuch@notmuchmail.org>; Mon, 26 Mar 2012 23:19:37 -0700 (PDT)\r
20 Received: by guru.guru-group.fi (Postfix, from userid 501)\r
21         id 1D60168055; Tue, 27 Mar 2012 09:19:34 +0300 (EEST)\r
22 From: Tomi Ollila <tomi.ollila@iki.fi>\r
23 To: Austin Clements <amdragon@MIT.EDU>, notmuch@notmuchmail.org\r
24 Subject: Re: [PATCH] emacs: Fix mis-named argument to\r
25         notmuch-get-bodypart-internal\r
26 In-Reply-To: <1332812426-26684-1-git-send-email-amdragon@mit.edu>\r
27 References: <1332812426-26684-1-git-send-email-amdragon@mit.edu>User-Agent:\r
28  Notmuch/0.12+68~g2b97293       (http://notmuchmail.org) Emacs/23.3.1\r
29  (x86_64-unknown-linux-gnu)\r
30 X-Face: HhBM'cA~<r"^Xv\KRN0P{vn'Y"Kd;zg_y3S[4)KSN~s?O\"QPoL\r
31         $[Xv_BD:i/F$WiEWax}R(MPS`^UaptOGD`*/=@\1lKoVa9tnrg0TW?"r7aRtgk[F\r
32         !)g;OY^,BjTbr)Np:%c_o'jj,Z\r
33 Date: Tue, 27 Mar 2012 09:19:34 +0300\r
34 Message-ID: <m2vclqtvk9.fsf@guru.guru-group.fi>\r
35 MIME-Version: 1.0\r
36 Content-Type: text/plain; charset=us-ascii\r
37 X-BeenThere: notmuch@notmuchmail.org\r
38 X-Mailman-Version: 2.1.13\r
39 Precedence: list\r
40 List-Id: "Use and development of the notmuch mail system."\r
41         <notmuch.notmuchmail.org>\r
42 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
43         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
44 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
45 List-Post: <mailto:notmuch@notmuchmail.org>\r
46 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
47 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
48         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
49 X-List-Received-Date: Tue, 27 Mar 2012 06:19:38 -0000\r
50 \r
51 On Tue, Mar 27 2012, Austin Clements <amdragon@MIT.EDU> wrote:\r
52 \r
53 > Previously, this function took an argument called "message-id", even\r
54 > though it was a general query, rather than a message ID.  This changes\r
55 > it to "query".\r
56 > ---\r
57 \r
58 +1 \r
59 \r
60 Tomi\r
61 \r
62 \r
63 >  emacs/notmuch-lib.el |    4 ++--\r
64 >  1 files changed, 2 insertions(+), 2 deletions(-)\r
65 >\r
66 > diff --git a/emacs/notmuch-lib.el b/emacs/notmuch-lib.el\r
67 > index 2e367b5..4b17ecc 100644\r
68 > --- a/emacs/notmuch-lib.el\r
69 > +++ b/emacs/notmuch-lib.el\r
70 > @@ -219,13 +219,13 @@ the given type."\r
71 >  \r
72 >  ;; Helper for parts which are generally not included in the default\r
73 >  ;; JSON output.\r
74 > -(defun notmuch-get-bodypart-internal (message-id part-number process-crypto)\r
75 > +(defun notmuch-get-bodypart-internal (query part-number process-crypto)\r
76 >    (let ((args '("show" "--format=raw"))\r
77 >       (part-arg (format "--part=%s" part-number)))\r
78 >      (setq args (append args (list part-arg)))\r
79 >      (if process-crypto\r
80 >       (setq args (append args '("--decrypt"))))\r
81 > -    (setq args (append args (list message-id)))\r
82 > +    (setq args (append args (list query)))\r
83 >      (with-temp-buffer\r
84 >        (let ((coding-system-for-read 'no-conversion))\r
85 >       (progn\r
86 > -- \r
87 > 1.7.7.2\r
88 >\r
89 > _______________________________________________\r
90 > notmuch mailing list\r
91 > notmuch@notmuchmail.org\r
92 > http://notmuchmail.org/mailman/listinfo/notmuch\r