Re: [PATCH] lib: provide _notmuch_database_log_append
[notmuch-archives.git] / 7e / 79d0f4bc707cf1bfec076f683a043f78931f70
1 Return-Path: <too@guru-group.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 CE2AA431FAF\r
6         for <notmuch@notmuchmail.org>; Sat,  5 Jan 2013 04:49:13 -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 ErCYCTG5OyMc for <notmuch@notmuchmail.org>;\r
16         Sat,  5 Jan 2013 04:49:12 -0800 (PST)\r
17 Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34])\r
18         by olra.theworths.org (Postfix) with ESMTP id C5042431FAE\r
19         for <notmuch@notmuchmail.org>; Sat,  5 Jan 2013 04:49:12 -0800 (PST)\r
20 Received: by guru.guru-group.fi (Postfix, from userid 501)\r
21         id 7A39C10014F; Sat,  5 Jan 2013 14:49:03 +0200 (EET)\r
22 From: Tomi Ollila <tomi.ollila@iki.fi>\r
23 To: notmuch@notmuchmail.org\r
24 Subject: [PATCH 1/1] fix line breaks in one comment paragraph in generated\r
25         .notmuch-config file\r
26 Date: Sat,  5 Jan 2013 14:49:01 +0200\r
27 Message-Id: <1357390141-22877-1-git-send-email-tomi.ollila@iki.fi>\r
28 X-Mailer: git-send-email 1.8.0\r
29 Cc: tomi.ollila@iki.fi\r
30 X-BeenThere: notmuch@notmuchmail.org\r
31 X-Mailman-Version: 2.1.13\r
32 Precedence: list\r
33 List-Id: "Use and development of the notmuch mail system."\r
34         <notmuch.notmuchmail.org>\r
35 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
36         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
37 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
38 List-Post: <mailto:notmuch@notmuchmail.org>\r
39 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
40 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
41         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
42 X-List-Received-Date: Sat, 05 Jan 2013 12:49:13 -0000\r
43 \r
44 While one comment in generated .notmuch-config file looked good in the\r
45 source file notmuch-config.c, the generated output was inconsistently\r
46 wide -- even breaking the 80-column boundary.\r
47 ---\r
48  notmuch-config.c | 5 +++--\r
49  1 file changed, 3 insertions(+), 2 deletions(-)\r
50 \r
51 diff --git a/notmuch-config.c b/notmuch-config.c\r
52 index 3e37a2d..9318a89 100644\r
53 --- a/notmuch-config.c\r
54 +++ b/notmuch-config.c\r
55 @@ -49,8 +49,9 @@ static const char new_config_comment[] =\r
56      "\tignore  A list (separated by ';') of file and directory names\n"\r
57      "\t        that will not be searched for messages by \"notmuch new\".\n"\r
58      "\n"\r
59 -    "\t        NOTE: *Every* file/directory that goes by one of those names will\n"\r
60 -    "\t        be ignored, independent of its depth/location in the mail store.\n";\r
61 +    "\t        NOTE: *Every* file/directory that goes by one of those\n"\r
62 +    "\t        names will be ignored, independent of its depth/location\n";\r
63 +    "\t        in the mail store.\n";\r
64  \r
65  static const char user_config_comment[] =\r
66      " User configuration\n"\r
67 -- \r
68 1.8.0\r
69 \r