]> git.ipfire.org Git - thirdparty/git.git/commitdiff
diff: move show_interdiff() from its own file to diff-lib
authorEric Sunshine <sunshine@sunshineco.com>
Tue, 8 Sep 2020 07:16:08 +0000 (03:16 -0400)
committerJunio C Hamano <gitster@pobox.com>
Tue, 8 Sep 2020 22:03:26 +0000 (15:03 -0700)
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>
Makefile
builtin/log.c
diff-lib.c
diff.h
interdiff.c [deleted file]
interdiff.h [deleted file]
log-tree.c

index 86e5411f39ddbba20f5633848eb538ae9ecd277b..cf4714193909bd683c38008a1b6f7fa70cf89a74 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -883,7 +883,6 @@ LIB_OBJS += hashmap.o
 LIB_OBJS += help.o
 LIB_OBJS += hex.o
 LIB_OBJS += ident.o
-LIB_OBJS += interdiff.o
 LIB_OBJS += json-writer.o
 LIB_OBJS += kwset.o
 LIB_OBJS += levenshtein.o
index b58f8da09ef7a16a1df0a99aba36003dc8732a24..ae9380da1be28237e30760f07134d3f75c0a627f 100644 (file)
@@ -33,7 +33,6 @@
 #include "commit-slab.h"
 #include "repository.h"
 #include "commit-reach.h"
-#include "interdiff.h"
 #include "range-diff.h"
 
 #define MAIL_DEFAULT_WRAP 72
index 50521e2093fc581ce3cedc76b3036a61f31bef35..9bab9074120fa5eff566aa4262ad7a5de1bbf6e5 100644 (file)
@@ -571,3 +571,27 @@ int index_differs_from(struct repository *r,
        object_array_clear(&rev.pending);
        return (rev.diffopt.flags.has_changes != 0);
 }
+
+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);
+}
diff --git a/diff.h b/diff.h
index e0c0af6286bbab24fde5174282c66a122737c392..308937c94ba5c76e68c4becb799f8c4842542c4a 100644 (file)
--- a/diff.h
+++ b/diff.h
@@ -600,6 +600,8 @@ int index_differs_from(struct repository *r, const char *def,
                       const struct diff_flags *flags,
                       int ita_invisible_in_index);
 
+void show_interdiff(struct rev_info *, int indent);
+
 /*
  * Fill the contents of the filespec "df", respecting any textconv defined by
  * its userdiff driver.  The "driver" parameter must come from a
diff --git a/interdiff.c b/interdiff.c
deleted file mode 100644 (file)
index c81d680..0000000
+++ /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);
-}
diff --git a/interdiff.h b/interdiff.h
deleted file mode 100644 (file)
index 01c730a..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-#ifndef INTERDIFF_H
-#define INTERDIFF_H
-
-struct rev_info;
-
-void show_interdiff(struct rev_info *, int indent);
-
-#endif
index 55a68d0c6101a7a287c9544e1963427fd0b77793..39bb362d5e5e486db54db1adc79577605f74ac7e 100644 (file)
@@ -15,7 +15,6 @@
 #include "sequencer.h"
 #include "line-log.h"
 #include "help.h"
-#include "interdiff.h"
 #include "range-diff.h"
 
 static struct decoration name_decoration = { "object names" };