On Sun, Oct 23, 2022 at 01:08:14PM +0200, [email protected] wrote:
> I am not sure that this patch is needed, as it seems to me that it
> modifies a code that is no longer run on windows with a patch Gavin
> applied very recently.
In the current code neither LC_ALL nor LC_MESSAGES is touched for
MS-Windows but we can add the code to change LC_ALL if necessary.
> > --- ./tp/Texinfo/Translations.pm~0 2022-10-19 18:30:05.000000000 +0300
> > +++ ./tp/Texinfo/Translations.pm 2022-10-23 13:28:19.459500000 +0300
> > @@ -96,6 +96,9 @@ sub gdt($$;$$$)
> > if (!$locale) {
> > $locale = POSIX::setlocale(LC_ALL, "en_US")
> > }
> > + if (!$locale) {
> > + $locale = POSIX::setlocale(LC_ALL, "ENU")
> > + }
> > our $locale_command;
> > if (!$locale and !$locale_command) {
> > $locale_command = "locale -a";