missing patch in change#2522
Gurusamy Sarathy [Thu, 11 Feb 1999 09:02:31 +0000 (09:02 +0000)]
p4raw-link: @2522 on //depot/cfgperl: cfaf527eb4b7a6905c549ce74f6f932b640d93a8

p4raw-id: //depot/perl@2865

lib/Pod/Text.pm

index 549bab5..3988d46 100644 (file)
@@ -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 = $_;
                    $_ = <IN>;
-                   if (/^=/) {  # tricked!
+                   if (/^[=\s]/) {  # tricked!, or verbatim paragraph
                        local($indent) = $indent[$#indent - 1] || $DEF_INDENT;
                        output($paratag);
                        redo POD_DIRECTIVE;