diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-09-18 19:53:12 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-09-18 19:53:12 -0700 |
commit | 01409bbf75198289591ba9dfe2c8d2370b36a058 (patch) | |
tree | 832ca39c35759bfc0654dfef58e8f7b88c74d59b /diff.c | |
parent | Merge branch 'jc/maint-name-hash-clear' into maint (diff) | |
parent | diff --quiet: make it synonym to --exit-code >/dev/null (diff) | |
download | tgif-01409bbf75198289591ba9dfe2c8d2370b36a058.tar.xz |
Merge branch 'jc/maint-diff-quiet' into maint
* jc/maint-diff-quiet:
diff --quiet: make it synonym to --exit-code >/dev/null
diff Porcelain: do not disable auto index refreshing on -C -C
Diffstat (limited to 'diff.c')
-rw-r--r-- | diff.c | 12 |
1 files changed, 1 insertions, 11 deletions
@@ -2400,13 +2400,6 @@ int diff_setup_done(struct diff_options *options) DIFF_OPT_SET(options, EXIT_WITH_STATUS); } - /* - * If we postprocess in diffcore, we cannot simply return - * upon the first hit. We need to run diff as usual. - */ - if (options->pickaxe || options->filter) - DIFF_OPT_CLR(options, QUIET); - return 0; } @@ -3398,10 +3391,7 @@ static void diffcore_skip_stat_unmatch(struct diff_options *diffopt) void diffcore_std(struct diff_options *options) { - if (DIFF_OPT_TST(options, QUIET)) - return; - - if (options->skip_stat_unmatch && !DIFF_OPT_TST(options, FIND_COPIES_HARDER)) + if (options->skip_stat_unmatch) diffcore_skip_stat_unmatch(options); if (options->break_opt != -1) diffcore_break(options->break_opt); |