Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 7b0950d0d220e2b6626a715b1f2c7dbaab61278f https://github.com/Perl/perl5/commit/7b0950d0d220e2b6626a715b1f2c7dbaab61278f Author: Karl Williamson <k...@cpan.org> Date: 2023-07-31 (Mon, 31 Jul 2023)
Changed paths: M locale.c Log Message: ----------- locale.c: use variable to avoid extra comparisons The mnemonic name also makes it clearer. Instead of comparing two variables multiple times, set a boolean once with the result, and use that. Commit: f0eb8bbcea48a988acb7df5c3c3db93d4a67fb75 https://github.com/Perl/perl5/commit/f0eb8bbcea48a988acb7df5c3c3db93d4a67fb75 Author: Karl Williamson <k...@cpan.org> Date: 2023-07-31 (Mon, 31 Jul 2023) Changed paths: M locale.c Log Message: ----------- locale.c: Windows Use .ACP for sys default fallback Prior to this commit the locale handling code thought that Windows used "" for the system default locale. But it doesn't, and to get to this point in the initialization code, the "" had already been tried and failed. Compare: https://github.com/Perl/perl5/compare/2a8fc21e7479...f0eb8bbcea48