Browse Source
show_interdiff() is a relatively small function and not likely to grow larger or more complicated. Rather than dedicating an entire source file to it, relocate it to diff-lib.c which houses other "take two things and compare them" functions meant to be re-used but not so low-level as to reside in the core diff implementation. Signed-off-by: Eric Sunshine <sunshine@sunshineco.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>maint


7 changed files with 26 additions and 39 deletions
@ -1,28 +0,0 @@
@@ -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); |
||||
} |
@ -1,8 +0,0 @@
@@ -1,8 +0,0 @@
|
||||
#ifndef INTERDIFF_H |
||||
#define INTERDIFF_H |
||||
|
||||
struct rev_info; |
||||
|
||||
void show_interdiff(struct rev_info *, int indent); |
||||
|
||||
#endif |
Loading…
Reference in new issue