On Sat, Oct 20, 2001 at 04:25:02PM -0400, Michael G Schwern wrote:
> On Sat, Oct 20, 2001 at 06:25:20PM +0300, Jarkko Hietaniemi wrote:
> > You have been drinking deeply from the fount of the QA Kool-Aid,
> > haven't you? I'm probably not going to be surprised one day to
> > find a regression tes
On Sat, Oct 20, 2001 at 06:25:20PM +0300, Jarkko Hietaniemi wrote:
> You have been drinking deeply from the fount of the QA Kool-Aid,
> haven't you? I'm probably not going to be surprised one day to
> find a regression test for Configure waiting in my inbox.
Would you mind it if you did? ;)
--
On Sat, Oct 20, 2001 at 01:54:14AM -0600, chromatic wrote:
> In article <20011020014825.J3681@blackrider>, "Michael G Schwern"
> <[EMAIL PROTECTED]> wrote:
>
> > Convert from $opt_* globals to an %Options hash
>
> A fun use of map!
>
> Is there a test for this beast? A quick 'perl -wc inst
> # parse the command-line
> -my $result = GetOptions( qw(
> +my $result = GetOptions( map {
> + my $key = $_;
> + $key =~ s/\W.+$//;
> + $key => \$Options{$_};
> +} qw(
> help
> podpath=s
> podroot=s
I'm not sure what you are trying to a
In article <20011020014825.J3681@blackrider>, "Michael G Schwern"
<[EMAIL PROTECTED]> wrote:
> Convert from $opt_* globals to an %Options hash
A fun use of map!
Is there a test for this beast? A quick 'perl -wc installhtml' verified that
it compiles, but refactoring's half complete without