RE: [Spam-verdenking][english 100%] RE: Reply all - issue
[notmuch-archives.git] / 97 / 2a2e31c68b2d1e2f8a6626dfc3a58660969b0c
1 Return-Path: <schnouki@schnouki.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 A226C429E50\r
6         for <notmuch@notmuchmail.org>; Wed, 21 Dec 2011 05:46:28 -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.1\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-0.1 tagged_above=-999 required=5\r
12         tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1]\r
13         autolearn=disabled\r
14 Received: from olra.theworths.org ([127.0.0.1])\r
15         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
16         with ESMTP id BxAIMqZoonSo for <notmuch@notmuchmail.org>;\r
17         Wed, 21 Dec 2011 05:46:24 -0800 (PST)\r
18 Received: from ks3536.kimsufi.com (schnouki.net [87.98.217.222])\r
19         by olra.theworths.org (Postfix) with ESMTP id BD5D3429E31\r
20         for <notmuch@notmuchmail.org>; Wed, 21 Dec 2011 05:46:24 -0800 (PST)\r
21 Received: from odin.local (nancy.schnouki.net [78.238.0.45])\r
22         by ks3536.kimsufi.com (Postfix) with ESMTPSA id BC5EB6A0028;\r
23         Wed, 21 Dec 2011 14:46:23 +0100 (CET)\r
24 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=schnouki.net;\r
25         s=key-schnouki; t=1324475183;\r
26         bh=gpi6A2D8/z7BaFQfG9FS7qDBHtyiwfwqysuQOF7LteU=;\r
27         h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References;\r
28         b=NLLbqELYZQ9aWDaXQv8kqpA0dedUQ6889pCy/vQboudyCiES73ZwUcxO+q+hsG/ri\r
29         IooZtIFb/TWGiEizv/hgTn4XrpROGRBrK2+th5BH6O3jHDuXtHrzzpqm+lEegxPoBk\r
30         /SYyFB3KcWgXigS8Q8yLNAmyo0nZcfz1LOv0z60Q=\r
31 From: Thomas Jost <schnouki@schnouki.net>\r
32 To: Dmitry Kurochkin <dmitry.kurochkin@gmail.com>\r
33 Subject: [PATCH 2/2] emacs: Change the default thousands separator to a space\r
34 Date: Wed, 21 Dec 2011 14:44:19 +0100\r
35 Message-Id: <1324475059-16543-2-git-send-email-schnouki@schnouki.net>\r
36 X-Mailer: git-send-email 1.7.8\r
37 In-Reply-To: <1324475059-16543-1-git-send-email-schnouki@schnouki.net>\r
38 References: <87fwgewvje.fsf@gmail.com>\r
39         <1324475059-16543-1-git-send-email-schnouki@schnouki.net>\r
40 Cc: notmuch@notmuchmail.org\r
41 X-BeenThere: notmuch@notmuchmail.org\r
42 X-Mailman-Version: 2.1.13\r
43 Precedence: list\r
44 List-Id: "Use and development of the notmuch mail system."\r
45         <notmuch.notmuchmail.org>\r
46 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
47         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
48 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
49 List-Post: <mailto:notmuch@notmuchmail.org>\r
50 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
51 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
52         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
53 X-List-Received-Date: Wed, 21 Dec 2011 13:46:28 -0000\r
54 \r
55 This had been discussed and decided on IRC.\r
56 \r
57 Rationale:\r
58   Therefore the space is recommended in the SI/ISO 31-0 standard, and the\r
59   International Bureau of Weights and Measures states that "for numbers with\r
60   many digits the digits may be divided into groups of three by a thin space, in\r
61   order to facilitate reading. Neither dots nor commas are inserted in the\r
62   spaces between groups of three".\r
63 \r
64 (http://en.wikipedia.org/wiki/Decimal_separator#Digit_grouping)\r
65 ---\r
66  emacs/notmuch-hello.el |    6 ++++--\r
67  1 files changed, 4 insertions(+), 2 deletions(-)\r
68 \r
69 diff --git a/emacs/notmuch-hello.el b/emacs/notmuch-hello.el\r
70 index ef585ea..878d92a 100644\r
71 --- a/emacs/notmuch-hello.el\r
72 +++ b/emacs/notmuch-hello.el\r
73 @@ -131,10 +131,12 @@ So:\r
74           (integer :tag "Number of characters")\r
75           (float :tag "Fraction of window")))\r
76  \r
77 -(defcustom notmuch-hello-thousands-separator ","\r
78 +(defcustom notmuch-hello-thousands-separator " "\r
79    "The string used as a thousands separator.\r
80  \r
81 -Typically \",\" in the US and UK and \".\" in Europe."\r
82 +Typically \",\" in the US and UK and \".\" or \" \" in Europe.\r
83 +The latter is recommended in the SI/ISO 31-0 standard and by the\r
84 +International Bureau of Weights and Measures."\r
85    :group 'notmuch\r
86    :type 'string)\r
87  \r
88 -- \r
89 1.7.8\r
90 \r