guile-commits
[Top][All Lists]
Advanced

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

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


From: Andy Wingo
Subject: [Guile-commits] 39/55: Add a fallback value for the locale-monetary-decimal-point
Date: Thu, 23 May 2019 11:52:42 -0400 (EDT)

wingo pushed a commit to branch master
in repository guile.

commit f169f64004982c6fda7d65edc1457b33aed8c5dd
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]