about summary refs log tree commit diff
path: root/third_party/git/interdiff.c
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/interdiff.c')
-rw-r--r--third_party/git/interdiff.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/third_party/git/interdiff.c b/third_party/git/interdiff.c
deleted file mode 100644
index c81d680a6c..0000000000
--- a/third_party/git/interdiff.c
+++ /dev/null
@@ -1,28 +0,0 @@
-#include "cache.h"
-#include "commit.h"
-#include "revision.h"
-#include "interdiff.h"
-
-static struct strbuf *idiff_prefix_cb(struct diff_options *opt, void *data)
-{
-	return data;
-}
-
-void show_interdiff(struct rev_info *rev, int indent)
-{
-	struct diff_options opts;
-	struct strbuf prefix = STRBUF_INIT;
-
-	memcpy(&opts, &rev->diffopt, sizeof(opts));
-	opts.output_format = DIFF_FORMAT_PATCH;
-	opts.output_prefix = idiff_prefix_cb;
-	strbuf_addchars(&prefix, ' ', indent);
-	opts.output_prefix_data = &prefix;
-	diff_setup_done(&opts);
-
-	diff_tree_oid(rev->idiff_oid1, rev->idiff_oid2, "", &opts);
-	diffcore_std(&opts);
-	diff_flush(&opts);
-
-	strbuf_release(&prefix);
-}