Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 1380c4f3b8014de5b3d8522690cff7ac5c6162b9 https://github.com/Perl/perl5/commit/1380c4f3b8014de5b3d8522690cff7ac5c6162b9 Author: David Mitchell <da...@iabyn.com> Date: 2020-12-01 (Tue, 01 Dec 2020)
Changed paths: M ext/Opcode/Opcode.pm M ext/Opcode/Opcode.xs Log Message: ----------- Opcode.xs: fix compiler warning In some debugging code it was doing a SAVEDESTRUCTOR() to do a warn() on scope exit, but it should have used the nocontext version of warn(). Commit: 4e49ae2fc23076c138d32159db1884deda8905ad https://github.com/Perl/perl5/commit/4e49ae2fc23076c138d32159db1884deda8905ad Author: David Mitchell <da...@iabyn.com> Date: 2020-12-01 (Tue, 01 Dec 2020) Changed paths: M ext/ODBM_File/ODBM_File.pm M ext/ODBM_File/ODBM_File.xs Log Message: ----------- ODBM_File.xs: silence -Wc++-compat warning Under gcc -Wc++-compat, it warns that 'delete' is a keyword. Since this is the name of the actual function in odbm, just temporarily disable the warning. Commit: e768bd98d8ad542e1bb37a1e715ad85b4b127afc https://github.com/Perl/perl5/commit/e768bd98d8ad542e1bb37a1e715ad85b4b127afc Author: David Mitchell <da...@iabyn.com> Date: 2020-12-01 (Tue, 01 Dec 2020) Changed paths: M config_h.SH M uconfig.h M win32/config_H.gc M win32/config_H.vc Log Message: ----------- append colon to USE_STRICT_BY_DEFAULT description This stops autodoc.pl complaining that: USE_STRICT_BY_DEFAULT has no documentation Commit: 9084c33e0f9582b71e6748dd410ae1f290c74d99 https://github.com/Perl/perl5/commit/9084c33e0f9582b71e6748dd410ae1f290c74d99 Author: David Mitchell <da...@iabyn.com> Date: 2020-12-01 (Tue, 01 Dec 2020) Changed paths: M dist/Unicode-Normalize/Makefile.PL Log Message: ----------- Unicode-Normalize/Makefile.PL: avoid stderr During build, output general progress information to stdout, not stderr. Commit: 840d003169037689159a793bb189c5991ff4bd7e https://github.com/Perl/perl5/commit/840d003169037689159a793bb189c5991ff4bd7e Author: David Mitchell <da...@iabyn.com> Date: 2020-12-01 (Tue, 01 Dec 2020) Changed paths: M ext/POSIX/t/posix.t Log Message: ----------- POSIX: t/posix.t: avoid warning Since warnings were enabled in this test file, skip one spurious warning being generated. S_ISBLK() is being called purely to test run-time loading; so it's being called without an arg, which now triggers an 'uninitialized value' warning. Commit: 357b2648940492f5bef52001b39a05bc8618f4fd https://github.com/Perl/perl5/commit/357b2648940492f5bef52001b39a05bc8618f4fd Author: David Mitchell <da...@iabyn.com> Date: 2020-12-01 (Tue, 01 Dec 2020) Changed paths: M dist/Storable/t/canonical.t Log Message: ----------- Storable: t/canonical.t: avoid stderr noise informational text should to stdout, not stderr Compare: https://github.com/Perl/perl5/compare/b277e767f3a3...357b26489404