From: Rafael Garcia-Suarez Date: Thu, 7 Mar 2002 23:13:23 +0000 (+0100) Subject: some more deltas X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=608dbdb1bd10406f3fb208674374d812c862ecb7;p=p5sagit%2Fp5-mst-13.2.git some more deltas Message-ID: <20020307231323.A13068@rafael> p4raw-id: //depot/perl@15087 --- diff --git a/pod/perldelta.pod b/pod/perldelta.pod index da88f22..9a8ea02 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -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 on Linux, F 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 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. + +=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->{bar} >> has been deprecated for a while. Now you will get an optional warning. +=item * + +Using C in scalar context now issues an optional warning. +This didn't do anything useful, as the sort was not performed. + =back =head1 Changed Internals