diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-08-17 17:17:16 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-08-17 17:17:16 -0700 |
commit | b14b969ab98d5dac835e57a2b6b9e9229b2e1c97 (patch) | |
tree | 98ae611f55619bcc45546ff33204900618abf10a /xdiff/xdiffi.h | |
parent | xdiff/xprepare: improve O(n*m) performance in xdl_cleanup_records() (diff) | |
parent | xdiff/xhistogram: drop need for additional variable (diff) | |
download | tgif-b14b969ab98d5dac835e57a2b6b9e9229b2e1c97.tar.xz |
Merge branch 'rc/histogram-diff' into HEAD
* rc/histogram-diff:
xdiff/xhistogram: drop need for additional variable
xdiff/xhistogram: rely on xdl_trim_ends()
xdiff/xhistogram: rework handling of recursed results
xdiff: do away with xdl_mmfile_next()
Make test number unique
xdiff/xprepare: use a smaller sample size for histogram diff
xdiff/xprepare: skip classification
teach --histogram to diff
t4033-diff-patience: factor out tests
xdiff/xpatience: factor out fall-back-diff function
xdiff/xprepare: refactor abort cleanups
xdiff/xprepare: use memset()
Conflicts:
xdiff/xprepare.c
Diffstat (limited to 'xdiff/xdiffi.h')
-rw-r--r-- | xdiff/xdiffi.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xdiff/xdiffi.h b/xdiff/xdiffi.h index ad033a8e6a..7a92ea9c4d 100644 --- a/xdiff/xdiffi.h +++ b/xdiff/xdiffi.h @@ -57,5 +57,7 @@ int xdl_emit_diff(xdfenv_t *xe, xdchange_t *xscr, xdemitcb_t *ecb, xdemitconf_t const *xecfg); int xdl_do_patience_diff(mmfile_t *mf1, mmfile_t *mf2, xpparam_t const *xpp, xdfenv_t *env); +int xdl_do_histogram_diff(mmfile_t *mf1, mmfile_t *mf2, xpparam_t const *xpp, + xdfenv_t *env); #endif /* #if !defined(XDIFFI_H) */ |