In article <[EMAIL PROTECTED]>, "Benjamin Goldberg"
<[EMAIL PROTECTED]> wrote:
> Chromatic wrote:
> [snip]
>> sub parse_command_line {
>> -usage() if defined $opt_help;
>> -$opt_help = "";# make -w shut up +usage() if defined
>> $Options{help};
>> +$Options{help}
Chromatic wrote:
[snip]
> sub parse_command_line {
> -usage() if defined $opt_help;
> -$opt_help = "";# make -w shut up
> +usage() if defined $Options{help};
> +$Options{help} = ""; # make -w shut up
Isn't that "make -w shut up" is talking about
In article <[EMAIL PROTECTED]>, "Johan Vromans"
<[EMAIL PROTECTED]> wrote:
> I'm not sure what you are trying to achieve with this.
Really really small incremental changes?
> The net efffect is that you get something like
>
> GetOptions('foo' => \$Options{foo}, 'bar=s' => \$Options{bar}