[PATCH v2 4/4] man: document notmuch search --format=text0
[notmuch-archives.git] / 68 / 5c6abdfb7c3ec3472ff9e31ccedee76f5e75b6
1 Return-Path: <bremner@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 89A43431FD0\r
6         for <notmuch@notmuchmail.org>; Sun, 18 Dec 2011 04:04:35 -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: -2.3\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-2.3 tagged_above=-999 required=5\r
12         tests=[RCVD_IN_DNSWL_MED=-2.3] 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 RtkWQJU1MHOv for <notmuch@notmuchmail.org>;\r
16         Sun, 18 Dec 2011 04:04:35 -0800 (PST)\r
17 Received: from tempo.its.unb.ca (tempo.its.unb.ca [131.202.1.21])\r
18         (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))\r
19         (No client certificate requested)\r
20         by olra.theworths.org (Postfix) with ESMTPS id EEAEF431FB6\r
21         for <notmuch@notmuchmail.org>; Sun, 18 Dec 2011 04:04:34 -0800 (PST)\r
22 Received: from zancas.localnet\r
23         (fctnnbsc36w-156034079193.pppoe-dynamic.High-Speed.nb.bellaliant.net\r
24         [156.34.79.193]) (authenticated bits=0)\r
25         by tempo.its.unb.ca (8.13.8/8.13.8) with ESMTP id pBIC4Xwg012126\r
26         (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO);\r
27         Sun, 18 Dec 2011 08:04:33 -0400\r
28 Received: from bremner by zancas.localnet with local (Exim 4.77)\r
29         (envelope-from <bremner@unb.ca>)\r
30         id 1RcFTk-0002EB-Qn; Sun, 18 Dec 2011 08:04:32 -0400\r
31 From: David Bremner <david@tethera.net>\r
32 To: "Notmuch Mail" <notmuch@notmuchmail.org>\r
33 Subject: Code Style Bikeshed 1/n: Break before Brace or Brace before Break? \r
34 User-Agent: Notmuch/0.10.2+103~gd823dc2 (http://notmuchmail.org) Emacs/23.3.1\r
35         (x86_64-pc-linux-gnu)\r
36 Date: Sun, 18 Dec 2011 08:04:32 -0400\r
37 Message-ID: <87vcpeaxwv.fsf@zancas.localnet>\r
38 MIME-Version: 1.0\r
39 Content-Type: text/plain; charset=us-ascii\r
40 X-BeenThere: notmuch@notmuchmail.org\r
41 X-Mailman-Version: 2.1.13\r
42 Precedence: list\r
43 List-Id: "Use and development of the notmuch mail system."\r
44         <notmuch.notmuchmail.org>\r
45 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
46         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
47 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
48 List-Post: <mailto:notmuch@notmuchmail.org>\r
49 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
50 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
51         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
52 X-List-Received-Date: Sun, 18 Dec 2011 12:04:35 -0000\r
53 \r
54 \r
55 In id:"1324135695-15487-1-git-send-email-david@tethera.net" we started\r
56 discussing the use of uncrustify (or some equivalent tool) to enforce\r
57 code style. In order for this to work, we would need to be a bit more\r
58 rigid about style.\r
59 \r
60 So my sunday morning bikeshed-bait is do we want \r
61 \r
62 if (...) {\r
63 }\r
64 \r
65 or \r
66 \r
67 if (...) \r
68 {\r
69 }\r
70 \r
71 (and similarly for 'switch', 'for', 'while')\r
72 \r
73 If I look at a small sample of Carl's original code it seems like the\r
74 former is more typical. But I might be biased because that is what I\r
75 prefer.\r
76 \r
77 d\r