* Synced the perlfaq
[p5sagit/p5-mst-13.2.git] / lib / importenv.pl
index 98ffa14..75274c2 100644 (file)
@@ -1,4 +1,11 @@
-;# $Header: importenv.pl,v 4.0 91/03/20 01:25:28 lwall Locked $
+# This library is no longer being maintained, and is included for backward
+# compatibility with Perl 4 programs which may require it.
+# This legacy library is deprecated and will be removed in a future
+# release of perl.
+
+warn( "The 'importenv.pl' legacy library is deprecated and will be"
+      . " removed in the next major release of perl. Please use the"
+      . " Env::Export module (or similar) from CPAN instead." );
 
 ;# This file, when interpreted, pulls the environment into normal variables.
 ;# Usage:
@@ -8,7 +15,7 @@
 
 local($tmp,$key) = '';
 
-foreach $key (keys(ENV)) {
+foreach $key (keys(%ENV)) {
     $tmp .= "\$$key = \$ENV{'$key'};" if $key =~ /^[A-Za-z]\w*$/;
 }
 eval $tmp;