Re: [PATCH 2/4] xdiff-interface: export comparing and hashing strings

2017-10-26 Thread René Scharfe
Am 24.10.2017 um 22:42 schrieb Stefan Beller: > On Tue, Oct 24, 2017 at 1:23 PM, René Scharfe wrote: > >> xdl_recmatch() is already exported; why not use it without this >> wrapper? > > It is exported in xdiff/xutils.h, to be used by various xdiff/*.c files, but > not outside of

Re: [PATCH 2/4] xdiff-interface: export comparing and hashing strings

2017-10-24 Thread Stefan Beller
On Tue, Oct 24, 2017 at 1:23 PM, René Scharfe wrote: > xdl_recmatch() is already exported; why not use it without this > wrapper? It is exported in xdiff/xutils.h, to be used by various xdiff/*.c files, but not outside of xdiff/. This one makes it available to the outside, too.

Re: [PATCH 2/4] xdiff-interface: export comparing and hashing strings

2017-10-24 Thread René Scharfe
Am 24.10.2017 um 20:59 schrieb Stefan Beller: > This will turn out to be useful in a later patch > > Signed-off-by: Stefan Beller > --- > xdiff-interface.c | 11 +++ > xdiff-interface.h | 5 + > 2 files changed, 16 insertions(+) > > diff --git

[PATCH 2/4] xdiff-interface: export comparing and hashing strings

2017-10-24 Thread Stefan Beller
This will turn out to be useful in a later patch Signed-off-by: Stefan Beller --- xdiff-interface.c | 11 +++ xdiff-interface.h | 5 + 2 files changed, 16 insertions(+) diff --git a/xdiff-interface.c b/xdiff-interface.c index 018e033089..fd002ebbc2 100644 ---