diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-06-28 15:19:11 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-06-28 15:19:11 -0700 |
commit | defd7aa34c81148904ed5d22d975b5b3c843e040 (patch) | |
tree | 556f7f92c9cef72ab66f0f68e6ecd473b9a4bfd9 /diff-no-index.c | |
parent | bc9e7dd41fe8b51cc7f2e79312a2ff777899f930 (diff) | |
parent | af63b543ed9f7d606cdd2c7a3bcded4e2dc8dad4 (diff) |
Merge branch 'jk/diff-no-index-pager'
"git diff --no-index" did not work with pagers correctly.
Diffstat (limited to 'diff-no-index.c')
-rw-r--r-- | diff-no-index.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/diff-no-index.c b/diff-no-index.c index f0b0010aed..77667b810d 100644 --- a/diff-no-index.c +++ b/diff-no-index.c @@ -224,13 +224,6 @@ void diff_no_index(struct rev_info *revs, } } - /* - * If the user asked for our exit code then don't start a - * pager or we would end up reporting its exit code instead. - */ - if (!DIFF_OPT_TST(&revs->diffopt, EXIT_WITH_STATUS)) - setup_pager(); - if (prefix) { int len = strlen(prefix); const char *paths[3]; @@ -255,13 +248,15 @@ void diff_no_index(struct rev_info *revs, if (!revs->diffopt.output_format) revs->diffopt.output_format = DIFF_FORMAT_PATCH; - DIFF_OPT_SET(&revs->diffopt, EXIT_WITH_STATUS); DIFF_OPT_SET(&revs->diffopt, NO_INDEX); revs->max_count = -2; if (diff_setup_done(&revs->diffopt) < 0) die("diff_setup_done failed"); + setup_diff_pager(&revs->diffopt); + DIFF_OPT_SET(&revs->diffopt, EXIT_WITH_STATUS); + if (queue_diff(&revs->diffopt, revs->diffopt.pathspec.raw[0], revs->diffopt.pathspec.raw[1])) exit(1); |