First patch is for part of MakeMaker. I suspect it needs editing slightly
to change the "See also" into a L<>

Nicholas Clark
----- Forwarded message from Brendan O'Dea <[EMAIL PROTECTED]> -----

Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
list-help: <mailto:[EMAIL PROTECTED]>
list-unsubscribe: <mailto:[EMAIL PROTECTED]>
list-post: <mailto:[EMAIL PROTECTED]>
X-List-Archive: <http://nntp.perl.org/group/perl.perl5.porters/92856>
Delivered-To: mailing list [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
X-Spam-Status: No, hits=-4.9 required=8.0
        tests=BAYES_00
X-Spam-Check-By: la.mx.develooper.com
Date: Thu, 8 Jul 2004 01:26:23 +1000
From: Brendan O'Dea <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Re: 5.8.5 RC1
Mail-Followup-To: [EMAIL PROTECTED]
In-Reply-To: <[EMAIL PROTECTED]>
User-Agent: Mutt/1.5.6+20040523i
X-Spam-Rating: onion.develooper.com 1.6.2 0/1000/N

On Wed, Jul 07, 2004 at 11:32:15AM +0100, Nicholas Clark wrote:
>Get it now from 
>  http://opensource.fotango.com/~nclark/perl-5.8.5-RC1.tar.bz2

Attached are some minor patches from the Debian 5.8.4 package not
included in this RC.

The only other patch I have is a roll-back of DynaLoader to 1.04 to
preserve backward compatability.  I'm guessing that you may not want to
apply that one :)

--bod

Content-Description: 00_fix_instmodsh_doc
Add simple manpage for instmodsh.

diff -Naur --exclude=debian perl-5.8.4.orig/lib/ExtUtils/instmodsh 
perl-5.8.4/lib/ExtUtils/instmodsh
--- perl-5.8.4.orig/lib/ExtUtils/instmodsh      2004-01-06 09:34:59.000000000 +1100
+++ perl-5.8.4/lib/ExtUtils/instmodsh   2004-05-02 06:57:25.000000000 +1000
@@ -137,3 +137,28 @@
 toplevel();
 
 ################################################################################
+
+__END__
+
+=head1 NAME
+
+instmodsh - interactive inventory for installed Perl modules
+
+=head1 SYNOPSIS
+
+instmodsh
+
+=head1 DESCRIPTION
+
+C<instmodsh> provides an interactive shell to query details of
+installed Perl modules.
+
+The shell provides a list of installed modules, each of which
+may be queried to to list files and directories, checked for missing
+files or packaged up as a tar archive.
+
+=head1 SEE ALSO
+
+ExtUtils::Installed(3perl)
+
+=cut

Content-Description: 01_fix_perluniintro
Typo fix from Julian Gilbey.

diff -Naur --exclude=debian perl-5.8.4.orig/pod/perluniintro.pod 
perl-5.8.4/pod/perluniintro.pod
--- perl-5.8.4.orig/pod/perluniintro.pod        2004-03-23 06:55:15.000000000 +1100
+++ perl-5.8.4/pod/perluniintro.pod     2004-05-02 07:30:53.000000000 +1000
@@ -668,8 +668,8 @@
 Use the C<Encode> package to try converting it.
 For example,
 
-    use Encode 'encode_utf8';
-    if (encode_utf8($string_of_bytes_that_I_think_is_utf8)) {
+    use Encode 'decode_utf8';
+    if (decode_utf8($string_of_bytes_that_I_think_is_utf8)) {
         # valid
     } else {
         # invalid


----- End forwarded message -----

Reply via email to