guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 01/02: Add a fallback value for the locale-monetary-deci


From: Mike Gran
Subject: [Guile-commits] 01/02: Add a fallback value for the locale-monetary-decimal-point
Date: Sat, 23 Feb 2019 19:35:08 -0500 (EST)

mike121 pushed a commit to branch stable-2.2
in repository guile.

commit 9ba449643d4c2ac1d2174befca7d765af222bcc0
Author: Michael Gran <address@hidden>
Date:   Sat Feb 23 16:19:05 2019 -0800

    Add a fallback value for the locale-monetary-decimal-point
    
    * module/ice-9/i18n.scm (locale-monetary-decimal-point): use "." as fallback
---
 module/ice-9/i18n.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/module/ice-9/i18n.scm b/module/ice-9/i18n.scm
index 6b9ead5..319d5a2 100644
--- a/module/ice-9/i18n.scm
+++ b/module/ice-9/i18n.scm
@@ -1,7 +1,7 @@
 ;;;; i18n.scm --- internationalization support    -*- coding: utf-8 -*-
 
 ;;;;   Copyright (C) 2006, 2007, 2009, 2010, 2012,
-;;;;      2017 Free Software Foundation, Inc.
+;;;;      2017, 2019 Free Software Foundation, Inc.
 ;;;;
 ;;;; This library is free software; you can redistribute it and/or
 ;;;; modify it under the terms of the GNU Lesser General Public
@@ -212,7 +212,7 @@
 (define-simple-langinfo-mapping locale-monetary-negative-sign
   NEGATIVE_SIGN        "-")
 (define-simple-langinfo-mapping locale-monetary-decimal-point
-  MON_DECIMAL_POINT    "")
+  MON_DECIMAL_POINT    ".")
 (define-simple-langinfo-mapping locale-monetary-thousands-separator
   MON_THOUSANDS_SEP    "")
 (define-simple-langinfo-mapping locale-monetary-grouping



reply via email to

[Prev in Thread] Current Thread [Next in Thread]