projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
daeb922
)
fix a2p example
Frank Wiegand [Thu, 8 Apr 2010 20:16:30 +0000 (22:16 +0200)]
pod/perlutil.pod
patch
|
blob
|
blame
|
history
diff --git
a/pod/perlutil.pod
b/pod/perlutil.pod
index
2d9b4ad
..
453248d
100644
(file)
--- a/
pod/perlutil.pod
+++ b/
pod/perlutil.pod
@@
-89,7
+89,7
@@
on the simple F<awk> script C<{print $2}> will produce a Perl program
based around this code:
while (<>) {
- ($Fld1,$Fld2) = split(/[:\n]/, $_, 9999);
+ ($Fld1,$Fld2) = split(/[:\n]/, $_, -1);
print $Fld2;
}