mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
Restore locale after loading Perl
This commit is contained in:
parent
2a1291f26f
commit
dfca0a9f84
@ -50,3 +50,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, "");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user