Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / 61 / 7bb9c2d66c8b045eba7b6ebbbfe32684cf90bd
1 Return-Path: <flo@chaoflow.net>\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 AD37D429E20\r
6         for <notmuch@notmuchmail.org>; Sun,  8 May 2011 16:13:22 -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 ETvBIPEWOa3u for <notmuch@notmuchmail.org>;\r
16         Sun,  8 May 2011 16:13:22 -0700 (PDT)\r
17 Received: from tesla.chaoflow.net (tesla.chaoflow.net [188.40.54.22])\r
18         (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))\r
19         (No client certificate requested)\r
20         by olra.theworths.org (Postfix) with ESMTPS id E4321431FB5\r
21         for <notmuch@notmuchmail.org>; Sun,  8 May 2011 16:13:21 -0700 (PDT)\r
22 Received: from eve.chaoflow.net (ppp-188-174-25-68.dynamic.mnet-online.de\r
23         [188.174.25.68])\r
24         (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))\r
25         (No client certificate requested)\r
26         (Authenticated sender: flo@chaoflow.net)\r
27         by tesla.chaoflow.net (Postfix) with ESMTPSA id 8B333C8CD;\r
28         Mon,  9 May 2011 01:13:20 +0200 (CEST)\r
29 Received: from eve.fritz.box (eve.chaoflow.net [127.0.0.1])\r
30         by eve.chaoflow.net (Postfix) with ESMTP id 50B3527D; Sun,\r
31         8 May 2011 23:13:20 +0000 (Local time zone must be set--see zic manual\r
32         page)\r
33 From: Florian Friesdorf <flo@chaoflow.net>\r
34 To: notmuch@notmuchmail.org\r
35 Subject: [PATCH 1/2] style fixes\r
36 Date: Mon,  9 May 2011 01:13:14 +0200\r
37 Message-Id: <1304896395-7407-1-git-send-email-flo@chaoflow.net>\r
38 X-Mailer: git-send-email 1.7.5.1\r
39 In-Reply-To: <BANLkTi=zkF5UtGPc69O06ZEaaCes-52y4w@mail.gmail.com>\r
40 References: <BANLkTi=zkF5UtGPc69O06ZEaaCes-52y4w@mail.gmail.com>\r
41 X-Virus-Scanned: clamav-milter 0.96.5 at tesla\r
42 X-Virus-Status: Clean\r
43 X-BeenThere: notmuch@notmuchmail.org\r
44 X-Mailman-Version: 2.1.13\r
45 Precedence: list\r
46 List-Id: "Use and development of the notmuch mail system."\r
47         <notmuch.notmuchmail.org>\r
48 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
49         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
50 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
51 List-Post: <mailto:notmuch@notmuchmail.org>\r
52 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
53 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
54         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
55 X-List-Received-Date: Sun, 08 May 2011 23:13:22 -0000\r
56 \r
57 ---\r
58  notmuch-search.c |    4 ++--\r
59  1 files changed, 2 insertions(+), 2 deletions(-)\r
60 \r
61 diff --git a/notmuch-search.c b/notmuch-search.c\r
62 index e7fc41a..fd7c7d1 100644\r
63 --- a/notmuch-search.c\r
64 +++ b/notmuch-search.c\r
65 @@ -112,13 +112,13 @@ format_item_id_text (unused (const void *ctx),\r
66  }\r
67  \r
68  static char *\r
69 -sanitize_string(const void *ctx, const char *str)\r
70 +sanitize_string (const void *ctx, const char *str)\r
71  {\r
72      char *out, *loop;\r
73  \r
74      loop = out = talloc_strdup (ctx, str);\r
75  \r
76 -    for(;*loop;loop++){\r
77 +    for (; *loop; loop++) {\r
78         if ((unsigned char)(*loop) < 32)\r
79             *loop = '?';\r
80      }\r
81 -- \r
82 1.7.5.1\r
83 \r