From: Rafael Garcia-Suarez Date: Thu, 10 Mar 2005 17:36:37 +0000 (+0000) Subject: Remove a spurious undefined warning when using getopts.pl with -w. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b1fd7ccc41177ed6dd350c64b8373d34ce2d689e;p=p5sagit%2Fp5-mst-13.2.git Remove a spurious undefined warning when using getopts.pl with -w. (from Debian) p4raw-id: //depot/perl@24019 --- diff --git a/lib/getopts.pl b/lib/getopts.pl index 4a50b8f..e30820a 100644 --- a/lib/getopts.pl +++ b/lib/getopts.pl @@ -31,7 +31,7 @@ sub Getopts { } eval " push(\@opt_$first, \$rest); - if(\$opt_$first eq '') { + if (!defined \$opt_$first or \$opt_$first eq '') { \$opt_$first = \$rest; } else {