Hi, David Fang <[email protected]> skribis:
> Updated results look better: Good. :-) > Only one failure: > FAIL: i18n.test: format ~h: English: 12345.5678 Yes, that’s a new feature, and a new regression. ;-) Can you try: (use-modules (ice-9 format)) (setlocale LC_ALL "en_US") (format #f "~h" 12345.5678) and: (use-modules (ice-9 i18n)) (setlocale LC_ALL "en_US") (locale-decimal-point) (locale-thousands-separator) Thanks, Ludo’.
