diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2006-05-20 15:40:29 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-21 02:03:09 -0700 |
commit | 698ce6f87e0d6db380f7306e190e8586da184577 (patch) | |
tree | 14171dae273827471bea4021a325b4d4a6c2c7d4 /diff.h | |
parent | 328b710d800dc3786fe2b8595e5553dc4a4af424 (diff) | |
download | git-698ce6f87e0d6db380f7306e190e8586da184577.tar.gz git-698ce6f87e0d6db380f7306e190e8586da184577.tar.xz |
fmt-patch: Support --attach
This patch touches a couple of files, because it adds options to print a
custom text just after the subject of a commit, and just after the
diffstat.
[jc: made "many dashes" used as the boundary leader into a single
variable, to reduce the possibility of later tweaks to miscount the
number of dashes to break it.]
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'diff.h')
-rw-r--r-- | diff.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -44,6 +44,7 @@ struct diff_options { int rename_limit; int setup; int abbrev; + const char *stat_sep; int nr_paths; const char **paths; @@ -52,6 +53,8 @@ struct diff_options { add_remove_fn_t add_remove; }; +extern const char mime_boundary_leader[]; + extern void diff_tree_setup_paths(const char **paths, struct diff_options *); extern void diff_tree_release_paths(struct diff_options *); extern int diff_tree(struct tree_desc *t1, struct tree_desc *t2, |