aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-05-02 10:29:21 -0700
committerJunio C Hamano <gitster@pobox.com>2024-05-02 10:29:21 -0700
commitcd9779c175657c8a3c450243b4196195465b1c5e (patch)
tree7dd79eb5db6a5c02748dffd2521b1e174ed9339c
parent0446d8e63ab4a041136f96586975ba821f501bb3 (diff)
parenta5a4cb7b278b53a6c490dd249eadedb4cc306fab (diff)
downloadgit-cd9779c175657c8a3c450243b4196195465b1c5e.tar.gz
Merge branch 'rs/diff-parseopts-cleanup' into next
Code clean-up to remove code that is now a noop. * rs/diff-parseopts-cleanup: diff-lib: stop calling diff_setup_done() in do_diff_cache()
-rw-r--r--diff-lib.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/diff-lib.c b/diff-lib.c
index 683f11e509..12b1541478 100644
--- a/diff-lib.c
+++ b/diff-lib.c
@@ -660,7 +660,6 @@ int do_diff_cache(const struct object_id *tree_oid, struct diff_options *opt)
repo_init_revisions(opt->repo, &revs, NULL);
copy_pathspec(&revs.prune_data, &opt->pathspec);
- diff_setup_done(&revs.diffopt);
revs.diffopt = *opt;
if (diff_cache(&revs, tree_oid, NULL, 1))