diff options
author | Junio C Hamano <junkio@cox.net> | 2005-05-29 16:56:13 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-30 10:35:49 -0700 |
commit | befe86392c767b62e4a6498cf951faae6f2c5ea3 (patch) | |
tree | 773e4f15fd5652983309b27c5f22dd29899cb749 /diff-files.c | |
parent | ddafa7e93325d45cd4bd950dd8e89ff3188d0250 (diff) | |
download | git-befe86392c767b62e4a6498cf951faae6f2c5ea3.tar.gz |
[PATCH] diff: consolidate various calls into diffcore.
The three diff-* brothers had a sequence of calls into diffcore
that were almost identical. Introduce a new diffcore_std()
function that takes all the necessary arguments to consolidate
it. This will make later enhancements and changing the order of
diffcore application simpler.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'diff-files.c')
-rw-r--r-- | diff-files.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/diff-files.c b/diff-files.c index 8ab7915977..3f20e7eee3 100644 --- a/diff-files.c +++ b/diff-files.c @@ -116,12 +116,9 @@ int main(int argc, const char **argv) show_modified(oldmode, mode, ce->sha1, null_sha1, ce->name); } - if (1 < argc) - diffcore_pathspec(argv + 1); - if (detect_rename) - diffcore_rename(detect_rename, diff_score_opt); - if (pickaxe) - diffcore_pickaxe(pickaxe, pickaxe_opts); + diffcore_std(argv + 1, + detect_rename, diff_score_opt, + pickaxe, pickaxe_opts); diff_flush(diff_output_format, 1); return 0; } |