Add a fallback value for the locale-monetary-decimal-point
authorMichael Gran <spk121@yahoo.com>
Sun, 24 Feb 2019 00:19:05 +0000 (16:19 -0800)
committerMichael Gran <spk121@yahoo.com>
Sun, 24 Feb 2019 00:19:05 +0000 (16:19 -0800)
* module/ice-9/i18n.scm (locale-monetary-decimal-point): use "." as fallback

module/ice-9/i18n.scm

index 6b9ead5327b3356990e1519deb9d21e8b7749c81..319d5a23c8da24752a6036db8ef4aa4d1addb71a 100644 (file)
@@ -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
 (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