[Perl/perl5] 008ae6: Maintainers.pl: use strict/warnings with "our"
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 008ae6a0ef7f87df8ee75ca523c6adf1ae0b768d https://github.com/Perl/perl5/commit/008ae6a0ef7f87df8ee75ca523c6adf1ae0b768d Author: Elvin Aslanov Date: 2023-09-06 (Wed, 06 Sep 2023) Changed paths: M Porting/Maintainers.pl Log Message: --- Maintainers.pl: use strict/warnings with "our" Add 2 pragmas, and scope globals with "our". Scoped %Maintainers and %DistName (autovivified hashes) with our. Fixes #21410 --- Archive: https://github.com/Perl/perl5/pull/21412
[Perl/perl5] c54274: remove extra entry for mauke in AUTHORS
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: c542745d8baa83293633ab4377da15b720141eb0 https://github.com/Perl/perl5/commit/c542745d8baa83293633ab4377da15b720141eb0 Author: Graham Knop Date: 2023-09-06 (Wed, 06 Sep 2023) Changed paths: M AUTHORS Log Message: --- remove extra entry for mauke in AUTHORS It's no longer needed, as a correct .mailmap entry was added.
[Perl/perl5] 51ec1e: perl.pod: fix position of perldbmfilter (under per...
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 51ec1ea4d076f66a8a18c491e076c6d0bcf087f7 https://github.com/Perl/perl5/commit/51ec1ea4d076f66a8a18c491e076c6d0bcf087f7 Author: Lukas Mai Date: 2023-09-06 (Wed, 06 Sep 2023) Changed paths: M pod/perl.pod Log Message: --- perl.pod: fix position of perldbmfilter (under perltie) It was inadvertently moved under perlclass as part of fd11211b37c20262922903f6435c1c09ac046e5c. Commit: d0d1fd7567467b0d69eef232b46d8cde8036eae0 https://github.com/Perl/perl5/commit/d0d1fd7567467b0d69eef232b46d8cde8036eae0 Author: Lukas Mai Date: 2023-09-06 (Wed, 06 Sep 2023) Changed paths: M .mailmap Log Message: --- add new mail alias for Lukas Mai Compare: https://github.com/Perl/perl5/compare/567a57d2dba2...d0d1fd756746
[Perl/perl5] 567a57: Fixup Lukas Mai in AUTHORS
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 567a57d2dba2437f3c7ae00447e5a7042bdd41dd https://github.com/Perl/perl5/commit/567a57d2dba2437f3c7ae00447e5a7042bdd41dd Author: Karl Williamson Date: 2023-09-05 (Tue, 05 Sep 2023) Changed paths: M AUTHORS Log Message: --- Fixup Lukas Mai in AUTHORS
[Perl/perl5] cdad41: cpan/DB_File - Update to version 1.859
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: cdad4191705914fdaabafaae295efc900acc10c4 https://github.com/Perl/perl5/commit/cdad4191705914fdaabafaae295efc900acc10c4 Author: Paul Marquess Date: 2023-09-05 (Tue, 05 Sep 2023) Changed paths: M MANIFEST M Porting/Maintainers.pl M cpan/DB_File/DB_File.pm M cpan/DB_File/DB_File.xs M cpan/DB_File/dbinfo Log Message: --- cpan/DB_File - Update to version 1.859 1.859 21 August 2023 * silence clang compiler warnings https://github.com/pmqs/DB_File/issues/13 Sun Aug 20 16:30:05 2023 +0100 6f8902efe7b2782ad418ea53ddaad08ed9bebf9b
[Perl/perl5] 12a461: perl.pod: use spaces instead of tabs for alignment
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 12a46113754babfa76b4008816f106477babc53b https://github.com/Perl/perl5/commit/12a46113754babfa76b4008816f106477babc53b Author: Lukas Mai Date: 2023-09-05 (Tue, 05 Sep 2023) Changed paths: M pod/perl.pod Log Message: --- perl.pod: use spaces instead of tabs for alignment On some platforms/formatters, the documentation overview in 'perldoc perl' renders badly (misaligned) because tabs are interpreted differently. This is presumably because some renderers output all of the leading spaces in a verbatim paragraph as-is, while others don't. For example, https://perldoc.perl.org/perl currently shows for me: | v ... perlsyn Perl syntax perldataPerl data structures perlop Perl operators and precedence perlsub Perl subroutines perlfuncPerl built-in functions perlopentut Perl open() tutorial perlpacktut Perl pack() and unpack() tutorial perlpod Perl plain old documentation perlpodspec Perl plain old documentation format specification perldocstylePerl style guide for core docs perlpodstylePerl POD style guide perldiagPerl diagnostic messages perldeprecation Perl deprecations perllexwarn Perl warnings and their control perldebug Perl debugging perlvar Perl predefined variables ... ^ | All of the "Perl"s in the second column should be aligned like the "perldeprecation" line, which is the only one that uses spaces in the original POD document (the others use either one tab, two tabs, or a mix of spaces and tabs). By using spaces everywhere we bypass the whole issue and get consistently aligned results, no matter how tabs are rendered.