diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-11-06 13:11:24 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-11-06 13:11:24 +0900 |
commit | 61ea1fe363663a7788e00185bb5c06d8dc2371f4 (patch) | |
tree | 6e7b30fbf13b6566f870bb663178e0bcc796b922 /xdiff-interface.c | |
parent | Merge branch 'jk/diff-color-moved-fix' (diff) | |
parent | diff.c: get rid of duplicate implementation (diff) | |
download | tgif-61ea1fe363663a7788e00185bb5c06d8dc2371f4.tar.xz |
Merge branch 'sb/diff-color-moved-use-xdl-recmatch'
Instead of using custom line comparison and hashing functions to
implement "moved lines" coloring in the diff output, use the pair
of these functions from lower-layer xdiff/ code.
* sb/diff-color-moved-use-xdl-recmatch:
diff.c: get rid of duplicate implementation
xdiff-interface: export comparing and hashing strings
Diffstat (limited to 'xdiff-interface.c')
-rw-r--r-- | xdiff-interface.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/xdiff-interface.c b/xdiff-interface.c index 018e033089..770e1f7f81 100644 --- a/xdiff-interface.c +++ b/xdiff-interface.c @@ -5,6 +5,7 @@ #include "xdiff/xdiffi.h" #include "xdiff/xemit.h" #include "xdiff/xmacros.h" +#include "xdiff/xutils.h" struct xdiff_emit_state { xdiff_emit_consume_fn consume; @@ -296,6 +297,17 @@ void xdiff_clear_find_func(xdemitconf_t *xecfg) } } +unsigned long xdiff_hash_string(const char *s, size_t len, long flags) +{ + return xdl_hash_record(&s, s + len, flags); +} + +int xdiff_compare_lines(const char *l1, long s1, + const char *l2, long s2, long flags) +{ + return xdl_recmatch(l1, s1, l2, s2, flags); +} + int git_xmerge_style = -1; int git_xmerge_config(const char *var, const char *value, void *cb) |