diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-08-20 12:53:09 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-08-20 12:53:09 -0700 |
commit | 55c6e6dc38188d27b4ec0315db93d6c40725cdd6 (patch) | |
tree | ede040677f6ad505638458f178d9527600ee7b4e /diff.h | |
parent | 16bfbe6352e90b87de26effe5ce120ab74ebafc7 (diff) | |
parent | 65113121a50cd765033d51204213c817832c59cf (diff) | |
download | git-55c6e6dc38188d27b4ec0315db93d6c40725cdd6.tar.gz git-55c6e6dc38188d27b4ec0315db93d6c40725cdd6.tar.xz |
Merge branch 'jc/maint-follow-rename-fix' into maint
* jc/maint-follow-rename-fix:
log: test for regression introduced in v1.7.2-rc0~103^2~2
diff --follow: do call diffcore_std() as necessary
diff --follow: do not waste cycles while recursing
Diffstat (limited to 'diff.h')
-rw-r--r-- | diff.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -126,6 +126,9 @@ struct diff_options { /* this is set by diffcore for DIFF_FORMAT_PATCH */ int found_changes; + /* to support internal diff recursion by --follow hack*/ + int found_follow; + FILE *file; int close_file; |