From: Jarkko Hietaniemi Date: Tue, 9 Jul 2002 18:58:45 +0000 (+0000) Subject: Tweak perldelta for the new PerlIO::Vianess. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d30acbc8050609adc36d46ec45c5473194a63b2c;p=p5sagit%2Fp5-mst-13.2.git Tweak perldelta for the new PerlIO::Vianess. p4raw-id: //depot/perl@17452 --- diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 24a8938..4c657a7 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -990,13 +990,7 @@ in quoted-printable encoding, as defined in RFC 2045 - IVia(MIME::QuotedPrint)",$path); - -See L. +See also L. =item * @@ -1019,13 +1013,18 @@ include PerlIO::Array and PerlIO::Code. See L. C, by Nick Ing-Simmons, acts as a PerlIO layer and wraps PerlIO layer functionality provided by a class (typically implemented -in perl code). +in Perl code). - use MIME::QuotedPrint; - open($fh,">Via(MIME::QuotedPrint)",$path); +=item * + +C, by Elizabeth Mattijsen, is an example +of a C class: + + use PerlIO::Via::QuotedPrint; + open($fh,">Via(PerlIO::Via::QuotedPrint)",$path); -This will automatically convert everything output to C<$fh> -to Quoted-Printable. See L. +This will automatically convert everything output to C<$fh> to +Quoted-Printable. See L and L. =item *