From: Gurusamy Sarathy Date: Thu, 11 Feb 1999 09:02:31 +0000 (+0000) Subject: missing patch in change#2522 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fe1d48e406eaa1977e84cc1939fcc5d7f475fb44;p=p5sagit%2Fp5-mst-13.2.git missing patch in change#2522 p4raw-link: @2522 on //depot/cfgperl: cfaf527eb4b7a6905c549ce74f6f932b640d93a8 p4raw-id: //depot/perl@2865 --- diff --git a/lib/Pod/Text.pm b/lib/Pod/Text.pm index 549bab5..3988d46 100644 --- a/lib/Pod/Text.pm +++ b/lib/Pod/Text.pm @@ -50,7 +50,7 @@ require Exporter; @EXPORT = qw(pod2text); use vars qw($VERSION); -$VERSION = "1.0203"; +$VERSION = "1.0204"; use locale; # make \w work right in non-ASCII lands @@ -274,7 +274,7 @@ sub prepare_for_output { if (length() + 3 < $indent) { my $paratag = $_; $_ = ; - if (/^=/) { # tricked! + if (/^[=\s]/) { # tricked!, or verbatim paragraph local($indent) = $indent[$#indent - 1] || $DEF_INDENT; output($paratag); redo POD_DIRECTIVE;