diff options
author | Eric Sunshine <sunshine@sunshineco.com> | 2020-09-08 09:16:08 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-09-09 00:03:26 +0200 |
commit | cdffbdc217aba8a39d786a642d1376a5a605adec (patch) | |
tree | 212d466731fac04ad80903848f647a52d9a3bf04 /log-tree.c | |
parent | Thirteenth batch (diff) | |
download | git-cdffbdc217aba8a39d786a642d1376a5a605adec.tar.xz git-cdffbdc217aba8a39d786a642d1376a5a605adec.zip |
diff: move show_interdiff() from its own file to diff-lib
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>
Diffstat (limited to '')
-rw-r--r-- | log-tree.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/log-tree.c b/log-tree.c index 55a68d0c61..39bb362d5e 100644 --- a/log-tree.c +++ b/log-tree.c @@ -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" }; |