@@ -5,15 +5,14 @@ package Text::PerlPP;
55
66# Semantic versioning, packed per Perl rules. Must always be at least one
77# digit left of the decimal, and six digits right of the decimal.
8- our $VERSION = ' 0.500001 ' ;
8+ our $VERSION = ' 0.500002 ' ;
99
1010use 5.010001;
1111use strict;
1212use warnings;
1313
1414use Getopt::Long 2.5 qw( GetOptionsFromArray) ;
1515use Pod::Usage;
16- use Data::Dumper;
1716
1817# === Constants ===========================================================
1918
@@ -131,9 +130,6 @@ sub StartOB {
131130 if ( scalar @{$self -> {OutputBuffers }} == 0 ) {
132131 $| = 1; # flush contents of STDOUT
133132 open ( $self -> {RootSTDOUT }, " >&STDOUT" ) or die $! ; # dup filehandle
134- # $self->{RootSTDOUT} = $fh;
135- # undef $fh;
136- # say STDERR "stdout in startob ", Dumper($self->{RootSTDOUT});
137133 }
138134 unshift ( @{$self -> {OutputBuffers }}, [ $mode , " " , $lineno ] );
139135 close ( STDOUT ); # must be closed before redirecting it to a variable
@@ -777,12 +773,7 @@ sub _parse_command_line {
777773 # Map the option names from GetOptions back to the internal names we use,
778774 # e.g., $hrOptsOut->{EVAL} from $hrOptsOut->{e}.
779775 my %revmap = map { $CMDLINE_OPTS {$_ }-> [0] => $_ } keys %CMDLINE_OPTS ;
780- # say "revmap ", Dumper(\%revmap);
781- # say "hrOptsOut ", Dumper($hrOptsOut);
782776 for my $optname (keys %$hrOptsOut ) {
783- # say "\nOptname $optname";
784- # say "Value $hrOptsOut->{$optname}";
785- # say "Revmap $revmap{$optname}";
786777 $hrOptsOut -> { $revmap {$optname } } = $hrOptsOut -> { $optname };
787778 }
788779
0 commit comments