Subject: | Pod::Simple::Text sets Text::Wrap overflow policy wrong |
In Pod/Simple/Text.pm the overflow policy for Text::Wrap is set using
$Text::Wrap::wrap = 'overflow';
However the variable used for this purpose within Text::Wrap is $huge, so that line ought to be
$Text::Wrap::huge = 'overflow';
This is the appropriate setting for Text::Wrap versions 2012.0818 and 2013.0523 - I guess it may have change in the dim and distant past, so maybe having both set might be a possibility...
If you have stupidly long words within the Pod, the result of this bug is for a rather unhelpful error message to be emitted from Text::Wrap ('This shouldn't happen').