some more deltas
Rafael Garcia-Suarez [Thu, 7 Mar 2002 23:13:23 +0000 (00:13 +0100)]
Message-ID: <20020307231323.A13068@rafael>

p4raw-id: //depot/perl@15087

pod/perldelta.pod

index da88f22..9a8ea02 100644 (file)
@@ -532,6 +532,20 @@ Rather than relying on C's argv[0] (which may not contain a full pathname)
 where possible $^X is now set by asking the operating system.
 (eg by reading F</proc/self/exe> on Linux, F</proc/curproc/file> on FreeBSD)
 
+=item *
+
+A new variable, C<${^TAINT}>, indicates whether taint mode is enabled.
+
+=item *
+
+You can now override the readline() builtin, and this overrides also
+the <FILEHANDLE> angle bracket operator.
+
+=item *
+
+The command-line options -s and -F are now recognized on the shebang
+(#!) line.
+
 =back
 
 =head1 Modules and Pragmata
@@ -997,6 +1011,11 @@ more portable.
 
 =item *
 
+The warnings issued by File::Find now belong to their own category.
+You can enable/disable them with C<use/no warnings 'File::Find';>.
+
+=item *
+
 File::Glob::glob() renamed to File::Glob::bsd_glob() to avoid
 prototype mismatch with CORE::glob().
 
@@ -2369,6 +2388,11 @@ the entire regex.  You will an optional warning if you try to do otherwise.
 Using arrays or hashes as references (e.g. C<< %foo-&gt;{bar} >>
 has been deprecated for a while.  Now you will get an optional warning.
 
+=item *
+
+Using C<sort> in scalar context now issues an optional warning.
+This didn't do anything useful, as the sort was not performed.
+
 =back
 
 =head1 Changed Internals