Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 95e4742c49bd11279dcd70828f262ea73db7633d https://github.com/Perl/perl5/commit/95e4742c49bd11279dcd70828f262ea73db7633d Author: Karl Williamson <k...@cpan.org> Date: 2022-09-10 (Sat, 10 Sep 2022)
Changed paths: M locale.c Log Message: ----------- locale.c: Silence C_codeset compiler warning This fixes #20140 This static variable is used in just one or (unlikely) two places, and only in some Configureations. Rather than add #ifdefs, or make a PERL_UNUSED call somewhere, making it a #define fixes the issue without taking up extra memory except in some dumb compilers under unlikely Configurations. Commit: f4fdec1fc8df1ef0400134e720b67589da5c8200 https://github.com/Perl/perl5/commit/f4fdec1fc8df1ef0400134e720b67589da5c8200 Author: Karl Williamson <k...@cpan.org> Date: 2022-09-10 (Sat, 10 Sep 2022) Changed paths: M embed.fnc M embed.h M locale.c M proto.h Log Message: ----------- locale.c: Silence compiler warning about S_new_numeric This function is not used unless LC_NUMERIC is enabled, so need not be defined unless that is true. Commit: 988faa118b300f3ea030afabdbdbe464d204ddb1 https://github.com/Perl/perl5/commit/988faa118b300f3ea030afabdbdbe464d204ddb1 Author: Karl Williamson <k...@cpan.org> Date: 2022-09-10 (Sat, 10 Sep 2022) Changed paths: M embed.fnc M embed.h M locale.c M proto.h Log Message: ----------- locale.c: Silence compiler warning about S_mortalixzed_pv_copy This function is not used unless locales are enabled, so need not be defined unless that is true. Commit: 057f0a44eea6a371212bff64f2688e675bf4fa60 https://github.com/Perl/perl5/commit/057f0a44eea6a371212bff64f2688e675bf4fa60 Author: Karl Williamson <k...@cpan.org> Date: 2022-09-10 (Sat, 10 Sep 2022) Changed paths: M embed.fnc M embed.h M locale.c M proto.h Log Message: ----------- locale.c: Silence compiler warning when no LC_CTYPE On Configurations without LC_CTYPE, various unused warnings were being generated. Commit: e933b48fd1674fe37ae768a4726cbd451595dc07 https://github.com/Perl/perl5/commit/e933b48fd1674fe37ae768a4726cbd451595dc07 Author: Karl Williamson <k...@cpan.org> Date: 2022-09-10 (Sat, 10 Sep 2022) Changed paths: M embed.fnc M embed.h M locale.c M proto.h Log Message: ----------- locale.c: Silence compiler warning when no LC_COLLATE On Configurations without LC_COLLATE, various unused warnings were being generated. Compare: https://github.com/Perl/perl5/compare/952fa04f7f2a...e933b48fd167