Document the do BAREWORD change, from Rafael.
Jarkko Hietaniemi [Sat, 8 Jun 2002 18:55:23 +0000 (18:55 +0000)]
p4raw-id: //depot/perl@17108

pod/perldelta.pod

index fc903ca..355346e 100644 (file)
@@ -493,6 +493,13 @@ 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
+subroutine called C<q>).  This means that for example instead of
+C<do format()> you must write C<do &format()>.
+
+=item *
+
 The builtin dump() now gives an optional warning
 C<dump() better written as CORE::dump()>,
 meaning that by default C<dump(...)> is resolved as the builtin