diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-01-03 14:10:04 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-01-03 14:10:04 +0000 |
commit | 58103a2e295c15d87c7ce0bd8dd83d7e110adac4 (patch) | |
tree | d8c206aa6ca06a6663cfd0e689e46d4b580ebf89 /pod/perlfaq3.pod | |
parent | 36c7798d7abbe7dd4517943c1b5755ab4f2dda73 (diff) | |
download | perl-58103a2e295c15d87c7ce0bd8dd83d7e110adac4.tar.gz |
Sync perlfaq.
p4raw-id: //depot/perl@26601
Diffstat (limited to 'pod/perlfaq3.pod')
-rw-r--r-- | pod/perlfaq3.pod | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/pod/perlfaq3.pod b/pod/perlfaq3.pod index 6e2f331fb7..9f1f5a6f2f 100644 --- a/pod/perlfaq3.pod +++ b/pod/perlfaq3.pod @@ -1,6 +1,6 @@ =head1 NAME -perlfaq3 - Programming Tools ($Revision: 1.54 $, $Date: 2005/11/17 17:22:02 $) +perlfaq3 - Programming Tools ($Revision: 1.56 $, $Date: 2005/12/31 00:54:37 $) =head1 DESCRIPTION @@ -85,11 +85,11 @@ with File::Find which is part of the standard library. my @files; find( - sub { - push @files, $File::Find::name - if -f $File::Find::name && /\.pm$/ + sub { + push @files, $File::Find::name + if -f $File::Find::name && /\.pm$/ }, - + @INC ); @@ -941,7 +941,7 @@ solved their problems. You might not need all the power of XS. The Inline::C module lets you put C code directly in your Perl source. It handles all the -magic to make it work. You still have to learn at least some of +magic to make it work. You still have to learn at least some of the perl API but you won't have to deal with the complexity of the XS support files. @@ -977,7 +977,7 @@ information, see L<ExtUtils::MakeMaker>. =head1 AUTHOR AND COPYRIGHT -Copyright (c) 1997-2005 Tom Christiansen, Nathan Torkington, and +Copyright (c) 1997-2006 Tom Christiansen, Nathan Torkington, and other authors as noted. All rights reserved. This documentation is free; you can redistribute it and/or modify it |