Branch: refs/heads/blead
Home: https://github.com/Perl/perl5
Commit: 3e1c78bda6bcaff0d1d04c51c98ff3ea0ba0db8b
https://github.com/Perl/perl5/commit/3e1c78bda6bcaff0d1d04c51c98ff3ea0ba0db8b
Author: Karl Williamson <[email protected]>
Date: 2023-02-07 (Tue, 07 Feb 2023)
Changed paths:
M pod/buildtoc
Log Message:
-----------
buildtoc: Use mnemonic instead of hard-coded code point
\r is clearer and potentially more portable than \015
Commit: ce8f481253f8f6250878c58247f4d8fee6a3a3ce
https://github.com/Perl/perl5/commit/ce8f481253f8f6250878c58247f4d8fee6a3a3ce
Author: Karl Williamson <[email protected]>
Date: 2023-02-07 (Tue, 07 Feb 2023)
Changed paths:
M pod/buildtoc
Log Message:
-----------
buildtoc: Fix to work on native line endings
buildtoc was failing to work properly on systems where files have line
endings that aren't plain \n, notably Windows.
The particular reason it fails is that it goes into paragraph slurp
mode. That mode is fooled by \r\n sequences, so fails to properly split
the input into paragraphs.
Compare: https://github.com/Perl/perl5/compare/70bac31a4f4e...ce8f481253f8