[PATCH] Prepare diffcore interface for diff-tree header supression.

This does not actually supress the extra headers when pickaxe is
used, but prepares enough support for diff-tree to implement it.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Junio C Hamano
2005-05-21 19:40:36 -07:00
committed by Linus Torvalds
parent 58b103f55d
commit 38c6f78059
9 changed files with 71 additions and 53 deletions

12
diff.h
View File

@ -19,11 +19,13 @@ extern void diff_unmerge(const char *path);
extern int diff_scoreopt_parse(const char *opt);
extern void diff_setup(int detect_rename, int minimum_score,
const char *pickaxe,
int reverse, int raw_output,
const char **spec, int cnt);
extern void diff_setup(int reverse, int diff_raw_output);
extern void diff_flush(void);
extern void diff_detect_rename(int, int);
extern void diff_pickaxe(const char *);
extern int diff_queue_is_empty(void);
extern void diff_flush(const char **, int);
#endif /* DIFF_H */