cvs commit: perlfaq perlfaq.pod perlfaq5.pod perlfaq7.pod
[email protected] (brian d foy)
| Newsgroups | perl.cvs.perlfaq |
|---|---|
| Message-ID | <[email protected]> |
cvsuser 03/01/26 09:45:47 Modified: . perlfaq.pod perlfaq5.pod perlfaq7.pod Log: * fixed literal < by making them E<lt> Revision Changes Path 1.17 +5 -5 perlfaq/perlfaq.pod Index: perlfaq.pod =================================================================== RCS file: /cvs/public/perlfaq/perlfaq.pod,v retrieving revision 1.16 retrieving revision 1.17 diff -u -w -r1.16 -r1.17 --- perlfaq.pod 3 Jan 2003 20:00:25 -0000 1.16 +++ perlfaq.pod 26 Jan 2003 17:45:46 -0000 1.17 @@ -1,6 +1,6 @@ =head1 NAME -perlfaq - frequently asked questions about Perl ($Date: 2003/01/03 20:00:25 $) +perlfaq - frequently asked questions about Perl ($Date: 2003/01/26 17:45:46 $) =head1 DESCRIPTION @@ -516,7 +516,7 @@ =item * -Why don't my <<HERE documents work? +Why don't my E<lt>E<lt>HERE documents work? =item * @@ -733,7 +733,7 @@ =item * -Why do I sometimes get an "Argument list too long" when I use <*>? +Why do I sometimes get an "Argument list too long" when I use E<lt>*E<gt>? =item * @@ -753,7 +753,7 @@ =item * -Why can't I just open(FH, ">file.lock")? +Why can't I just open(FH, "E<gt>file.lock")? =item * @@ -1012,7 +1012,7 @@ =item * -Why doesn't "my($foo) = <FILE>;" work right? +Why doesn't "my($foo) = E<lt>FILEE<gt>;" work right? =item * 1.28 +3 -3 perlfaq/perlfaq5.pod Index: perlfaq5.pod =================================================================== RCS file: /cvs/public/perlfaq/perlfaq5.pod,v retrieving revision 1.27 retrieving revision 1.28 diff -u -w -r1.27 -r1.28 --- perlfaq5.pod 6 Dec 2002 07:40:11 -0000 1.27 +++ perlfaq5.pod 26 Jan 2003 17:45:46 -0000 1.28 @@ -1,6 +1,6 @@ =head1 NAME -perlfaq5 - Files and Formats ($Revision: 1.27 $, $Date: 2002/12/06 07:40:11 $) +perlfaq5 - Files and Formats ($Revision: 1.28 $, $Date: 2003/01/26 17:45:46 $) =head1 DESCRIPTION @@ -434,7 +434,7 @@ See also the new L<perlopentut> if you have it (new for 5.6). -=head2 Why do I sometimes get an "Argument list too long" when I use <*>? +=head2 Why do I sometimes get an "Argument list too long" when I use E<lt>*E<gt>? The C<< <> >> operator performs a globbing operation (see above). In Perl versions earlier than v5.6.0, the internal glob() operator forks @@ -537,7 +537,7 @@ =back -=head2 Why can't I just open(FH, ">file.lock")? +=head2 Why can't I just open(FH, "E<gt>file.lock")? A common bit of code B<NOT TO USE> is this: 1.13 +2 -2 perlfaq/perlfaq7.pod Index: perlfaq7.pod =================================================================== RCS file: /cvs/public/perlfaq/perlfaq7.pod,v retrieving revision 1.12 retrieving revision 1.13 diff -u -w -r1.12 -r1.13 --- perlfaq7.pod 6 Dec 2002 07:40:11 -0000 1.12 +++ perlfaq7.pod 26 Jan 2003 17:45:46 -0000 1.13 @@ -1,6 +1,6 @@ =head1 NAME -perlfaq7 - General Perl Language Issues ($Revision: 1.12 $, $Date: 2002/12/06 07:40:11 $) +perlfaq7 - General Perl Language Issues ($Revision: 1.13 $, $Date: 2003/01/26 17:45:46 $) =head1 DESCRIPTION @@ -519,7 +519,7 @@ are effectively shallowly bound. Consider this just one more reason not to use them. See the answer to L<"What's a closure?">. -=head2 Why doesn't "my($foo) = <FILE>;" work right? +=head2 Why doesn't "my($foo) = E<lt>FILEE<gt>;" work right? C<my()> and C<local()> give list context to the right hand side of C<=>. The <FH> read operation, like so many of Perl's