Front page | perl.perl5.porters |
Postings from January 2001
Re: [PATCH @8269] Continue blocks and B::Deparse
Thread Previous
From:
Stephen McCamant
Date:
January 3, 2001 13:48
Subject:
Re: [PATCH @8269] Continue blocks and B::Deparse
Message ID:
14931.40265.379608.910008@soda.csua.berkeley.edu
Of course, no large change would be complete without documentation
typos you notice right after sending it out. The following goes on top
of my last changes:
-- Stephen McC
--- ext/B/B/Deparse.pm.orig2 Wed Jan 3 15:04:59 2001
+++ ext/B/B/Deparse.pm Wed Jan 3 15:43:46 2001
@@ -2869,8 +2869,8 @@
=head1 SYNOPSIS
-B<perl> B<-MO=Deparse>[B<,-u>I<PACKAGE>][B<,-p>][B<,-q>][B<,-l>][B<,-s>I<LETTERS>]
- I<prog.pl>
+B<perl> B<-MO=Deparse>[B<,-u>I<PACKAGE>][B<,-p>][B<,-q>][B<,-l>]
+ [B<,-s>I<LETTERS>][B<,-x>I<LEVEL>] I<prog.pl>
=head1 DESCRIPTION
@@ -3023,7 +3023,7 @@
special cases in B::Deparse's normal operations.
If I<LEVEL> is at least 3, for loops will be translated into equivalent
-while loops with a continue block; for instance
+while loops with continue blocks; for instance
for ($i = 0; $i < 10; ++$i) {
print $i;
@@ -3039,7 +3039,7 @@
}
Note that in a few cases this translation can't be perfectly carried back
-into the source code -- if the loop'd initializer declares a my variable,
+into the source code -- if the loop's initializer declares a my variable,
for instance, it won't have the correct scope outside of the loop.
If I<LEVEL> is at least 7, if statements will be translated into equivalent
Thread Previous