Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / f1 / 4a2569a354e37f4e7e4ca7e63a5f2065a0fb8b
1 Return-Path: <bremner@tesseract.cs.unb.ca>\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 888FB431FAE\r
6         for <notmuch@notmuchmail.org>; Sat, 27 Dec 2014 14:06:39 -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\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 d+nKe-40iibe for <notmuch@notmuchmail.org>;\r
16         Sat, 27 Dec 2014 14:06:37 -0800 (PST)\r
17 Received: from yantan.tethera.net (yantan.tethera.net [199.188.72.155])\r
18         (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits))\r
19         (No client certificate requested)\r
20         by olra.theworths.org (Postfix) with ESMTPS id 92261429E45\r
21         for <notmuch@notmuchmail.org>; Sat, 27 Dec 2014 14:06:14 -0800 (PST)\r
22 Received: from remotemail by yantan.tethera.net with local (Exim 4.80)\r
23         (envelope-from <bremner@tesseract.cs.unb.ca>)\r
24         id 1Y4zV0-0000EI-8n; Sat, 27 Dec 2014 18:06:14 -0400\r
25 Received: (nullmailer pid 1479 invoked by uid 1000); Sat, 27 Dec 2014\r
26         22:05:48 -0000\r
27 From: David Bremner <david@tethera.net>\r
28 To: notmuch@notmuchmail.org\r
29 Subject: [PATCH v2 4/6] lib: add private function to extract the database for\r
30         a message.\r
31 Date: Sat, 27 Dec 2014 23:05:35 +0100\r
32 Message-Id: <1419717937-1108-5-git-send-email-david@tethera.net>\r
33 X-Mailer: git-send-email 2.1.3\r
34 In-Reply-To: <1419717937-1108-1-git-send-email-david@tethera.net>\r
35 References: <1419717937-1108-1-git-send-email-david@tethera.net>\r
36 X-BeenThere: notmuch@notmuchmail.org\r
37 X-Mailman-Version: 2.1.13\r
38 Precedence: list\r
39 List-Id: "Use and development of the notmuch mail system."\r
40         <notmuch.notmuchmail.org>\r
41 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
42         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
43 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
44 List-Post: <mailto:notmuch@notmuchmail.org>\r
45 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
46 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
47         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
48 X-List-Received-Date: Sat, 27 Dec 2014 22:06:40 -0000\r
49 \r
50 This is needed by logging in functions outside message.cc that take\r
51 only a notmuch_message_t object.\r
52 ---\r
53  lib/message.cc        | 6 ++++++\r
54  lib/notmuch-private.h | 2 ++\r
55  2 files changed, 8 insertions(+)\r
56 \r
57 diff --git a/lib/message.cc b/lib/message.cc\r
58 index a7a13cc..43cc078 100644\r
59 --- a/lib/message.cc\r
60 +++ b/lib/message.cc\r
61 @@ -1625,3 +1625,9 @@ notmuch_message_destroy (notmuch_message_t *message)\r
62  {\r
63      talloc_free (message);\r
64  }\r
65 +\r
66 +notmuch_database_t *\r
67 +_notmuch_message_database (notmuch_message_t *message)\r
68 +{\r
69 +    return message->notmuch;\r
70 +}\r
71 diff --git a/lib/notmuch-private.h b/lib/notmuch-private.h\r
72 index 7c6cfc0..fad3a92 100644\r
73 --- a/lib/notmuch-private.h\r
74 +++ b/lib/notmuch-private.h\r
75 @@ -473,6 +473,8 @@ _notmuch_doc_id_set_remove (notmuch_doc_id_set_t *doc_ids,\r
76  void\r
77  _notmuch_message_add_reply (notmuch_message_t *message,\r
78                             notmuch_message_t *reply);\r
79 +notmuch_database_t *\r
80 +_notmuch_message_database (notmuch_message_t *message);\r
81  \r
82  /* sha1.c */\r
83  \r
84 -- \r
85 2.1.3\r
86 \r