summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Sunshine <sunshine@sunshineco.com>2020-09-08 07:16:08 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-09-08 22:03:26 (GMT)
commitcdffbdc217aba8a39d786a642d1376a5a605adec (patch)
tree212d466731fac04ad80903848f647a52d9a3bf04 /Makefile
parent3a238e539bcdfe3f9eb5010fd218640c1b499f7a (diff)
downloadgit-cdffbdc217aba8a39d786a642d1376a5a605adec.zip
git-cdffbdc217aba8a39d786a642d1376a5a605adec.tar.gz
git-cdffbdc217aba8a39d786a642d1376a5a605adec.tar.bz2
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 'Makefile')
-rw-r--r--Makefile1
1 files changed, 0 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 86e5411..cf47141 100644
--- 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