Change 34346 by [EMAIL PROTECTED] on 2008/09/11 15:16:28
Integrate:
[ 34335]
Integrate:
[ 34272]
Subject: Add missing "a" to binmode documentation in perlfunc.pod
From: Matt Kraai <[EMAIL PROTECTED]>
Date: Thu, 4 Sep 2008 21:16:54 -0700
Message-ID: <[EMAIL PROTECTED]>
[ 34306]
Two missed s/Autrijus/Audrey/g
[ 34307]
Fix an inconsistency spotted by David Landgren. (Although this is not
his proffered patch)
[ 34311]
Subject: [DOC PATCH] av.c - clearify that av_shift returns &PL_sv_undef
if array is empty
From: Claes Jakobsson <[EMAIL PROTECTED]>
Date: Sat, 9 Aug 2008 11:22:18 +0200
Message-Id: <[EMAIL PROTECTED]>
[ 34334]
Correct Audrey's name in traditional and simplified Chinese (with a lot
of help from CL).
Affected files ...
... //depot/maint-5.8/perl/README.cn#5 integrate
... //depot/maint-5.8/perl/README.tw#4 integrate
... //depot/maint-5.8/perl/av.c#48 integrate
... //depot/maint-5.8/perl/pod/perlfunc.pod#113 integrate
... //depot/maint-5.8/perl/pod/perltodo.pod#50 integrate
Differences ...
==== //depot/maint-5.8/perl/README.cn#5 (text) ====
Index: perl/README.cn
--- perl/README.cn#4~30961~ 2007-04-15 06:14:52.000000000 -0700
+++ perl/README.cn 2008-09-11 08:16:28.000000000 -0700
@@ -145,6 +145,6 @@
Jarkko Hietaniemi E<lt>[EMAIL PROTECTED]<gt>
-Autrijus Tang (ÌÆ×Úºº) E<lt>[EMAIL PROTECTED]<gt>
+Audrey Tang (ÌÆ·ï) E<lt>[EMAIL PROTECTED]<gt>
=cut
==== //depot/maint-5.8/perl/README.tw#4 (text) ====
Index: perl/README.tw
--- perl/README.tw#3~30961~ 2007-04-15 06:14:52.000000000 -0700
+++ perl/README.tw 2008-09-11 08:16:28.000000000 -0700
@@ -171,6 +171,6 @@
Jarkko Hietaniemi E<lt>[EMAIL PROTECTED]<gt>
-Autrijus Tang (ð©vº~) E<lt>[EMAIL PROTECTED]<gt>
+Audrey Tang (ð»ñ) E<lt>[EMAIL PROTECTED]<gt>
=cut
==== //depot/maint-5.8/perl/av.c#48 (text) ====
Index: perl/av.c
--- perl/av.c#47~33217~ 2008-02-02 14:47:50.000000000 -0800
+++ perl/av.c 2008-09-11 08:16:28.000000000 -0700
@@ -692,7 +692,8 @@
/*
=for apidoc av_shift
-Shifts an SV off the beginning of the array.
+Shifts an SV off the beginning of the array. Returns C<&PL_sv_undef> if the
+array is empty.
=cut
*/
==== //depot/maint-5.8/perl/pod/perlfunc.pod#113 (text) ====
Index: perl/pod/perlfunc.pod
--- perl/pod/perlfunc.pod#112~34288~ 2008-09-05 15:58:40.000000000 -0700
+++ perl/pod/perlfunc.pod 2008-09-11 08:16:28.000000000 -0700
@@ -506,7 +506,7 @@
If LAYER is present it is a single string, but may contain multiple
directives. The directives alter the behaviour of the file handle.
-When LAYER is present using binmode on text file makes sense.
+When LAYER is present using binmode on a text file makes sense.
If LAYER is omitted or specified as C<:raw> the filehandle is made
suitable for passing binary data. This includes turning off possible CRLF
==== //depot/maint-5.8/perl/pod/perltodo.pod#50 (text) ====
Index: perl/pod/perltodo.pod
--- perl/pod/perltodo.pod#49~34289~ 2008-09-05 16:04:00.000000000 -0700
+++ perl/pod/perltodo.pod 2008-09-11 08:16:28.000000000 -0700
@@ -384,14 +384,14 @@
=over 4
-=item * C<cc (cc.U)>
+=item * C<cc> (in F<cc.U>)
This variable holds the name of a command to execute a C compiler which
can resolve multiple global references that happen to have the same
name. Usual values are F<cc> and F<gcc>.
Fervent ANSI compilers may be called F<c89>. AIX has F<xlc>.
-=item * ld (dlsrc.U)
+=item * C<ld> (in F<dlsrc.U>)
This variable indicates the program to be used to link
libraries for dynamic loading. On some systems, it is F<ld>.
End of Patch.