mirror of
https://github.com/git/git
synced 2024-10-28 19:25:47 +00:00
3b026417ea
A future change will allow "git format-patch --interdiff=<prev> -1" to insert an interdiff into the commentary section of the lone patch of a 1-patch series. However, to prevent the inserted interdiff from confusing git-am, as well as human readers, it needs to be indented. Therefore, teach show_interdiff() how to indent. Signed-off-by: Eric Sunshine <sunshine@sunshineco.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
8 lines
119 B
C
8 lines
119 B
C
#ifndef INTERDIFF_H
|
|
#define INTERDIFF_H
|
|
|
|
struct rev_info;
|
|
|
|
void show_interdiff(struct rev_info *, int indent);
|
|
|
|
#endif
|