mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-29 19:30:36 +02:00
Add a fallback value for the locale-monetary-decimal-point
* module/ice-9/i18n.scm (locale-monetary-decimal-point): use "." as fallback
This commit is contained in:
parent
a5df94e78c
commit
f169f64004
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue