Change 18298 by rgs@rgs-home on 2002/12/12 20:00:36

        Whitespace and indentation fix in the output of B::Debug.

Affected files ...

... //depot/perl/ext/B/B/Debug.pm#19 edit

Differences ...

==== //depot/perl/ext/B/B/Debug.pm#19 (text) ====
Index: perl/ext/B/B/Debug.pm
--- perl/ext/B/B/Debug.pm#18~18220~     Sun Dec  1 16:58:54 2002
+++ perl/ext/B/B/Debug.pm       Thu Dec 12 12:00:36 2002
@@ -40,9 +40,9 @@
     my ($op) = @_;
     $op->B::BINOP::debug();
     printf <<'EOT', ${$op->redoop}, ${$op->nextop}, ${$op->lastop};
-       op_redoop       0x%x
-       op_nextop       0x%x
-       op_lastop       0x%x
+       op_redoop       0x%x
+       op_nextop       0x%x
+       op_lastop       0x%x
 EOT
 }
 
@@ -205,7 +205,7 @@
        GV              0x%x
        FILE            %s
        DEPTH           %d
-       PADLIST         0x%x                           
+       PADLIST         0x%x
        OUTSIDE         0x%x
        OUTSIDE_SEQ     %d
 EOT
@@ -221,13 +221,13 @@
     my(@array) = $av->ARRAY;
     print "\tARRAY\t\t(", join(", ", map("0x" . $$_, @array)), ")\n";
     printf <<'EOT', scalar(@array), $av->MAX, $av->OFF, $av->AvFLAGS;
-       FILL            %d    
+       FILL            %d
        MAX             %d
        OFF             %d
        AvFLAGS         %d
 EOT
 }
-    
+
 sub B::GV::debug {
     my ($gv) = @_;
     if ($done_gv{$$gv}++) {
End of Patch.

Reply via email to