1
0
Fork 0

Merge pull request #1498 from ailin-nemui/perl5380locale

Restore locale after loading Perl

(cherry picked from commit 48bc90eb17)
This commit is contained in:
ailin-nemui 2023-10-01 11:31:07 +00:00 committed by Ailin Nemui
parent 91593cfec3
commit 6438fcfe70
1 changed files with 7 additions and 0 deletions

View File

@ -52,3 +52,10 @@ sub eval_file {
die "cap_sasl has been unloaded from Irssi ".Irssi::version()." because it conflicts with the built-in SASL support. See /help network for configuring SASL or read the ChangeLog for more information.";
}
}
if ( $] >= 5.037005 && $] <= 5.038000 ) {
# https://github.com/Perl/perl5/issues/21366
print STDERR "\e7 \e[A Irssi: applying locale workaround for Perl 5.38.0 \e8";
require POSIX;
POSIX::setlocale(&POSIX::LC_ALL, "");
}