Re: Change 17108: Document the do BAREWORD change, from Rafael.
Philip Newton [Mon, 10 Jun 2002 07:56:41 +0000 (09:56 +0200)]
Date: Mon, 10 Jun 2002 07:56:41 +0200
Message-ID: <anf8gugjm2v70ckgmkjm12paa00atimik4@4ax.com>

Subject: Re: Change 17110: Add deprecations.
From: Philip Newton <Philip.Newton@gmx.net>
Date: Mon, 10 Jun 2002 07:56:22 +0200
Message-ID: <bpf8gu0v332thjkpv39uirardul58aa7b3@4ax.com>

p4raw-id: //depot/perl@17167

pod/perldelta.pod

index 09e138f..4b739dd 100644 (file)
@@ -228,8 +228,8 @@ since it, in a way, falsely promised that the features could be used.
 =item *
 
 In future releases, non-PerlIO aware XS modules may become completely
-unsupported.  Since PerlIO is a drop-in replacement for stdio, this
-shouldn't be that drastic a change.
+unsupported.  Since PerlIO is a drop-in replacement for stdio at the
+source code level, this shouldn't be that drastic a change.
 
 =item *
 
@@ -505,7 +505,7 @@ in multiple arguments.)
 =item *
 
 C<do> followed by a bareword now ensures that this bareword isn't
-a keyword (to avoid a bug where C<do q(foo.pl)> tried to call
+a keyword (to avoid a bug where C<do q(foo.pl)> tried to call a
 subroutine called C<q>).  This means that for example instead of
 C<do format()> you must write C<do &format()>.