From: Junio C Hamano <junkio@cox.net>
To: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Cc: git@vger.kernel.org
Subject: Re: [PATCH] Teach git-diff{,-files} the new option `--no-index`
Date: Thu, 22 Feb 2007 11:18:28 -0800 [thread overview]
Message-ID: <7vmz36f1bv.fsf@assigned-by-dhcp.cox.net> (raw)
In-Reply-To: <Pine.LNX.4.63.0702221926390.22628@wbgn013.biozentrum.uni-wuerzburg.de> (Johannes Schindelin's message of "Thu, 22 Feb 2007 19:27:15 +0100 (CET)")
Johannes Schindelin <Johannes.Schindelin@gmx.de> writes:
>> Can't they made to call a new function, which has the option
>> parsing followed by the switch between magic max_count==-2
>> codepath and run_diff_files()?
>
> How about adding "int always_use_index" to the signature of
> run_diff_files()?
The "magic" part is not about the index at all (it is about
using only that magic part to do diff on filesystem), and the
original code is about "index vs filesystem". I would rather
keep them in separate function. That is:
run_diff_files(); /* compares index vs filesystem */
run_diff_filesystem(); /* runs diff2 */
run_diff_files_cmd() {
/* a new helper */
parse args;
if (magic)
run_diff_filesystem();
else
run_diff_files();
}
builtin_diff() {
if (not about two trees nor two blobs ...)
run_diff_files_cmd();
else if (about two trees)
run_diff_tree();
else if (about tree and index)
run_diff_index();
}
wt_status() {
run_diff_files();
run_diff_index();
}
For one thing, I want to move read_cache() out of
run_diff_files() and run_diff_index() to their callers, so that
the caller can use a handcrafted active_cache[] that is somewhat
different from what read_cache() originally read.
next prev parent reply other threads:[~2007-02-22 19:18 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-02-20 18:46 [PATCH] Teach git-diff{,-files} the new option `--no-index` Johannes Schindelin
2007-02-22 10:36 ` Junio C Hamano
2007-02-22 16:25 ` Johannes Schindelin
2007-02-22 18:09 ` Junio C Hamano
2007-02-22 18:27 ` Johannes Schindelin
2007-02-22 18:54 ` [PATCH] run_diff_files(): add option to prevent --no-index Johannes Schindelin
2007-02-22 19:18 ` Junio C Hamano [this message]
2007-02-22 20:01 ` [PATCH] Teach git-diff{,-files} the new option `--no-index` Johannes Schindelin
2007-02-22 20:28 ` Junio C Hamano
2007-02-22 20:47 ` Johannes Schindelin
2007-02-22 20:50 ` [PATCH, N'TH TRY] Teach git-diff-files " Johannes Schindelin
2007-02-23 11:44 ` Junio C Hamano
2007-02-23 16:07 ` diff-patch: Avoid emitting double-slashes in textual patch Johannes Schindelin
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=7vmz36f1bv.fsf@assigned-by-dhcp.cox.net \
--to=junkio@cox.net \
--cc=Johannes.Schindelin@gmx.de \
--cc=git@vger.kernel.org \
/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).