Skip to content

Conversation

@iabyn
Copy link
Contributor

@iabyn iabyn commented Dec 23, 2025

This method had the line

$anchor =~ s/^\s+//; s/\s+$//;      # Strip white space.

where leading space was stripped from $anchor, but trailing space was being attempted to be stripped from $_ instead, giving rise to a bunch of warnings like:

Use of uninitialized value $_ in substitution (s///)
    at lib/Pod/Html/Util.pm line 253.

during 'make install.html'

TODO: fill description here


  • This set of changes requires a perldelta entry, and it is included.
  • This set of changes requires a perldelta entry, and I need help writing it.
  • This set of changes does not require a perldelta entry.

This method had the line

    $anchor =~ s/^\s+//; s/\s+$//;      # Strip white space.

where leading space was stripped from $anchor, but trailing space
was being attempted to be stripped from $_ instead, giving rise to
a bunch of warnings like:

    Use of uninitialized value $_ in substitution (s///)
        at lib/Pod/Html/Util.pm line 253.

during 'make install.html'
@iabyn iabyn merged commit 65c55e8 into blead Dec 24, 2025
68 checks passed
@iabyn iabyn deleted the davem/install_html branch December 24, 2025 11:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants