From: Thomas Rast <trast@student.ethz.ch>
To: Junio C Hamano <gitster@pobox.com>
Cc: Tim Henigan <tim.henigan@gmail.com>, <git@vger.kernel.org>,
<davvid@gmail.com>
Subject: Re: [PATCH 10/9 v4] difftool: fix regression in '--prompt' options
Date: Thu, 22 Mar 2012 09:19:26 +0100 [thread overview]
Message-ID: <871uoljbe9.fsf@thomas.inf.ethz.ch> (raw)
In-Reply-To: <7viphxz37j.fsf@alter.siamese.dyndns.org> (Junio C. Hamano's message of "Wed, 21 Mar 2012 21:09:36 -0700")
Junio C Hamano <gitster@pobox.com> writes:
> Tim Henigan <tim.henigan@gmail.com> writes:
>
>> +# the '--prompt' and '--no-prompt' options require special treatment
>> +# because they may be specified more than once...the last one "wins".
>> +for (@ARGV) {
>> + if (($_ eq "-y") or ($_ eq "--no-prompt")) {
>> + $prompt = 0;
>> + } elsif ($_ eq "--prompt") {
>> + $prompt = 1;
>> + } else {
>> + push(@diffargs, $_);
>> + }
>> +}
>
> I really do not like the direction in which this series is going. We do
> not have a similar --no-gui option to defeat --gui option that may appear
> earlier on the command line, but when we fix that bug (isn't it a bug?),
> we would have to teach this loop about that option, wouldn't we?
>
> In the end, won't you end up resurrecting the argument parsing loop that
> you got rid of with the first patch in your series? Isn't this working
> around the problem introduced only because you are using Getopt::Long and
> hitting its limitations?
Limitations? You can basically steal code from git-send-email. As an
example:
---- 8< ----
#!/usr/bin/perl
use strict;
use warnings;
use Getopt::Long;
my $foo = 0;
my $rc = GetOptions("foo!" => \$foo,
"n" => sub { $foo = 0; },
"y" => \$foo);
print "$foo\n";
---- 8< ----
$ ./getopt-test.perl -n
0
$ ./getopt-test.perl -y
1
$ ./getopt-test.perl --foo
1
$ ./getopt-test.perl --no-foo
0
$ ./getopt-test.perl --foo --no-foo
0
$ ./getopt-test.perl -y -n
0
$ ./getopt-test.perl --foo -n
0
--
Thomas Rast
trast@{inf,student}.ethz.ch
next prev parent reply other threads:[~2012-03-22 8:19 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-21 19:35 [PATCH v3 0/9] difftool: teach command to perform directory diffs Tim Henigan
2012-03-21 19:35 ` [PATCH v3 7/9] difftool: teach difftool to handle " Tim Henigan
2012-03-21 19:35 ` [PATCH v3 8/9] difftool: teach dir-diff to copy modified files back to working tree Tim Henigan
2012-03-21 19:35 ` [PATCH v3 10/9] difftool: do not allow mix of '--prompt' with '--no-prompt' Tim Henigan
2012-03-21 20:14 ` Junio C Hamano
2012-03-22 1:53 ` [PATCH 10/9 v4] difftool: fix regression in '--prompt' options Tim Henigan
2012-03-22 4:09 ` Junio C Hamano
2012-03-22 8:19 ` Thomas Rast [this message]
2012-03-22 13:51 ` Tim Henigan
2012-03-22 16:59 ` Junio C Hamano
2012-03-22 19:01 ` Tim Henigan
2012-03-22 19:13 ` Junio C Hamano
2012-03-22 16:57 ` Junio C Hamano
2012-03-21 19:35 ` [PATCH v3 11/9] t7800: add test for difftool --tool-help Tim Henigan
2012-03-21 19:36 ` [PATCH v3 12/9] t7800: add tests for difftool --dir-diff Tim Henigan
2012-03-22 9:53 ` David Aguilar
2012-03-22 13:55 ` Tim Henigan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=871uoljbe9.fsf@thomas.inf.ethz.ch \
--to=trast@student.ethz.ch \
--cc=davvid@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=tim.henigan@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).