Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-04-20 02:12:02 +0400
committerJunio C Hamano <junkio@cox.net>2006-04-20 02:38:14 +0400
commitba580aeafb52921025de1efe1c50db34393f9907 (patch)
tree3bad2a681f7dcb5b04731280993de93fff968349
parent1aec7917dc52901c6df301ddc8fea70f5ce0db09 (diff)
diff: move diff.c to diff-lib.c to make room.
Now I am not doing any real "git-diff in C" yet, but this would help before doing so. Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r--Makefile2
-rw-r--r--diff-lib.c (renamed from diff.c)0
2 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8aed3af016..3ecd674c14 100644
--- a/Makefile
+++ b/Makefile
@@ -199,7 +199,7 @@ LIB_H = \
tree-walk.h log-tree.h
DIFF_OBJS = \
- diff.o diffcore-break.o diffcore-order.o \
+ diff-lib.o diffcore-break.o diffcore-order.o \
diffcore-pickaxe.o diffcore-rename.o tree-diff.o combine-diff.o \
diffcore-delta.o log-tree.o
diff --git a/diff.c b/diff-lib.c
index 0a832c3585..0a832c3585 100644
--- a/diff.c
+++ b/diff-lib.c