From: Gurusamy Sarathy Date: Mon, 7 Feb 2000 08:29:28 +0000 (+0000) Subject: pod fixes (from Abigail and M J T Guy) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6d0f518e0b7ff19ca6956aba9c075bcc87b59d84;p=p5sagit%2Fp5-mst-13.2.git pod fixes (from Abigail and M J T Guy) p4raw-id: //depot/perl@5015 --- diff --git a/Changes b/Changes index 8e91d33..e9921c9 100644 --- a/Changes +++ b/Changes @@ -17,7 +17,7 @@ here are some of the more common names in the Changes file, and their current addresses (as of July 1998): Gisle Aas - Abigail + Abigail Kenneth Albanowski Russ Allbery Spider Boardman diff --git a/README.os2 b/README.os2 index cd07ca1..46f032a 100644 --- a/README.os2 +++ b/README.os2 @@ -1136,7 +1136,7 @@ Really really odious function to implement. Returns absolute name of file which would have C if CWD were C. C defaults to the current dir. -=item C Get current value of extended library search path. If C is present and I, works with END_LIBPATH, otherwise with diff --git a/gv.c b/gv.c index a7ed085..f65b1ce 100644 --- a/gv.c +++ b/gv.c @@ -299,7 +299,7 @@ Perl_gv_fetchmeth(pTHX_ HV *stash, const char *name, STRLEN len, I32 level) /* =for apidoc gv_fetchmethod -See L. =cut */ diff --git a/pod/perlapi.pod b/pod/perlapi.pod index 897fcdc..063cffc 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -349,7 +349,7 @@ obtained from the GV with the C macro. =item gv_fetchmethod -See L. GV* gv_fetchmethod(HV* stash, const char* name) diff --git a/pod/perldebug.pod b/pod/perldebug.pod index 1c94f5f..2431fc4 100644 --- a/pod/perldebug.pod +++ b/pod/perldebug.pod @@ -145,7 +145,7 @@ List C lines starting at C. =item l min-max -List lines C through C. C is synonymous to C<->. +List lines C through C. C> is synonymous to C>. =item l line diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 59c7571..52f148c 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -2267,8 +2267,8 @@ L) so that the environ array isn't the target of the change to =item Unknown open() mode '%s' (F) The second argument of 3-argument open() is not among the list -of valid modes: C>, C>, CE>, C<+L>, -C<+L>, C<+EE>, C<-|>, C<|->. +of valid modes: C>, C>, CE>, C<+E>, +C<+E>, C<+EE>, C<-|>, C<|E<45>>. =item Unknown process %x sent message to prime_env_iter: %s diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 2cf4bb6..3911203 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -3132,8 +3132,8 @@ representative, who probably put it there in the first place. =item Unknown open() mode '%s' (F) The second argument of 3-argument open() is not among the list -of valid modes: C>, C>, CE>, C<+L>, -C<+L>, C<+EE>, C<-|>, C<|->. +of valid modes: C>, C>, CE>, C<+E>, +C<+E>, C<+EE>, C<-|>, C<|E<45>>. =item Unknown process %x sent message to prime_env_iter: %s diff --git a/pod/perlopentut.pod b/pod/perlopentut.pod index 5d2be30..fd32bd9 100644 --- a/pod/perlopentut.pod +++ b/pod/perlopentut.pod @@ -494,7 +494,7 @@ to mean standard input, per the standard convention. You've probably noticed how Perl's C and C functions can produce messages like: - Some warning at scriptname line 29, chunk 7. + Some warning at scriptname line 29, line 7. That's because you opened a filehandle FH, and had read in seven records from it. But what was the name of the file, not the handle? @@ -510,7 +510,7 @@ temporarily, then all you have to do is this: Since you're using the pathname of the file as its handle, you'll get warnings more like - Some warning at scriptname line 29, chunk 7. + Some warning at scriptname line 29, line 7. =head2 Single Argument Open diff --git a/pod/perlport.pod b/pod/perlport.pod index 6ee5ba3..d2015be 100644 --- a/pod/perlport.pod +++ b/pod/perlport.pod @@ -1494,7 +1494,7 @@ Not implemented. (S, Win32, VMS, Plan9, S, VOS) The C<|> variants are supported only if ToolServer is installed. (S) -open to C<|-> and C<-|> are unsupported. (S, Win32, S) +open to C<|E<45>> and C<-|> are unsupported. (S, Win32, S) =item pipe READHANDLE,WRITEHANDLE diff --git a/pod/perlvar.pod b/pod/perlvar.pod index 79ec7f9..cf260c5 100644 --- a/pod/perlvar.pod +++ b/pod/perlvar.pod @@ -185,7 +185,7 @@ $+[0] - $-[0]>. Similarly, C<$>I coincides with CIC<], $+[>IC<] - $-[>IC<]> if C<$-[>IC<]> is defined, and $+ coincides with C. One can use C<$#+> to find the number of subgroups in the last successful match. Contrast with -C<$#->, the last I subgroup. Compare with C<@->. +C<$#E<45>>, the last I subgroup. Compare with C<@E<45>>. =item $MULTILINE_MATCHING @@ -421,7 +421,7 @@ I-th subpattern, or undef if the subpattern did not match. Thus after a match against $_, $& coincides with C. Similarly, C<$>I coincides with CIC<], $+[>IC<] - $-[>IC<]> if C<$-[>IC<]> is defined, and $+ coincides with -C. One can use C<$#-> to find the last +C. One can use C<$#E<45>> to find the last matched subgroup in the last successful match. Contrast with C<$#+>, the number of subgroups in the regular expression. Compare with C<@+>.