Mention that lexicalizing $a or $b is a bad idea if one
authorJarkko Hietaniemi <jhi@iki.fi>
Sun, 3 Jun 2001 17:27:13 +0000 (17:27 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Sun, 3 Jun 2001 17:27:13 +0000 (17:27 +0000)
wants to use sort().

p4raw-id: //depot/perl@10409

pod/perlvar.pod

index da06055..b72f357 100644 (file)
@@ -118,7 +118,9 @@ test.  Outside a C<while> test, this will not happen.
 Special package variables when using sort(), see L<perlfunc/sort>.
 Because of this specialness $a and $b don't need to be declared
 (using local(), use vars, or our()) even when using the strict
-vars pragma.
+vars pragma.  Don't lexicalize them with C<my $a> or C<my $b>
+if you want to be able to use them in the sort() comparison block
+or function.
 
 =back