Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id A226C429E50 for ; Wed, 21 Dec 2011 05:46:28 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.1 X-Spam-Level: X-Spam-Status: No, score=-0.1 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id BxAIMqZoonSo for ; Wed, 21 Dec 2011 05:46:24 -0800 (PST) Received: from ks3536.kimsufi.com (schnouki.net [87.98.217.222]) by olra.theworths.org (Postfix) with ESMTP id BD5D3429E31 for ; Wed, 21 Dec 2011 05:46:24 -0800 (PST) Received: from odin.local (nancy.schnouki.net [78.238.0.45]) by ks3536.kimsufi.com (Postfix) with ESMTPSA id BC5EB6A0028; Wed, 21 Dec 2011 14:46:23 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=schnouki.net; s=key-schnouki; t=1324475183; bh=gpi6A2D8/z7BaFQfG9FS7qDBHtyiwfwqysuQOF7LteU=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References; b=NLLbqELYZQ9aWDaXQv8kqpA0dedUQ6889pCy/vQboudyCiES73ZwUcxO+q+hsG/ri IooZtIFb/TWGiEizv/hgTn4XrpROGRBrK2+th5BH6O3jHDuXtHrzzpqm+lEegxPoBk /SYyFB3KcWgXigS8Q8yLNAmyo0nZcfz1LOv0z60Q= From: Thomas Jost To: Dmitry Kurochkin Subject: [PATCH 2/2] emacs: Change the default thousands separator to a space Date: Wed, 21 Dec 2011 14:44:19 +0100 Message-Id: <1324475059-16543-2-git-send-email-schnouki@schnouki.net> X-Mailer: git-send-email 1.7.8 In-Reply-To: <1324475059-16543-1-git-send-email-schnouki@schnouki.net> References: <87fwgewvje.fsf@gmail.com> <1324475059-16543-1-git-send-email-schnouki@schnouki.net> Cc: notmuch@notmuchmail.org X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Dec 2011 13:46:28 -0000 This had been discussed and decided on IRC. Rationale: Therefore the space is recommended in the SI/ISO 31-0 standard, and the International Bureau of Weights and Measures states that "for numbers with many digits the digits may be divided into groups of three by a thin space, in order to facilitate reading. Neither dots nor commas are inserted in the spaces between groups of three". (http://en.wikipedia.org/wiki/Decimal_separator#Digit_grouping) --- emacs/notmuch-hello.el | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/emacs/notmuch-hello.el b/emacs/notmuch-hello.el index ef585ea..878d92a 100644 --- a/emacs/notmuch-hello.el +++ b/emacs/notmuch-hello.el @@ -131,10 +131,12 @@ So: (integer :tag "Number of characters") (float :tag "Fraction of window"))) -(defcustom notmuch-hello-thousands-separator "," +(defcustom notmuch-hello-thousands-separator " " "The string used as a thousands separator. -Typically \",\" in the US and UK and \".\" in Europe." +Typically \",\" in the US and UK and \".\" or \" \" in Europe. +The latter is recommended in the SI/ISO 31-0 standard and by the +International Bureau of Weights and Measures." :group 'notmuch :type 'string) -- 1.7.8