From: Linus Torvalds Date: Fri, 27 May 2005 00:41:28 +0000 (-0700) Subject: git-diff-tree: don't use diffcore_pathspec() X-Git-Tag: v0.99~441 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=fbe082a528861af785be15bb37d1c7d8f574daa4;p=git.git git-diff-tree: don't use diffcore_pathspec() diff-tree does the culling of uninteresting paths internally, and fundamentally has to do so for performance reasons. So there's no point in calling the separate pathname culling logic here, especially as it seems slightly broken. --- diff --git a/diff-tree.c b/diff-tree.c index 7e16be42..8297b7f3 100644 --- a/diff-tree.c +++ b/diff-tree.c @@ -268,8 +268,6 @@ static int call_diff_flush(void) diff_flush(DIFF_FORMAT_NO_OUTPUT, 0); return 0; } - if (nr_paths) - diffcore_pathspec(paths); if (header) { if (diff_output_format == DIFF_FORMAT_MACHINE) { const char *ep, *cp;