commit - 2f4de504f0166e0a055fa365272d152db41358fd
commit + 8bd7d41ff41f26775d745d1e511af43a24013e94
blob - 51c302c70b290279d7b2f5d6c5516f09586611ab
blob + 66efe86bc24a7dffe6d6b3200b6c590a6f7bcd79
--- diff.c
+++ diff.c
}
static void
-chunk_contexts_merge(struct chunk_context *cc, const struct chunk_context *other)
+chunk_context_merge(struct chunk_context *cc, const struct chunk_context *other)
{
ranges_merge(&cc->chunk, &other->chunk);
ranges_merge(&cc->left, &other->left);
* This next context touches or overlaps the
* previous one, join.
*/
- chunk_contexts_merge(&cc, &next);
+ chunk_context_merge(&cc, &next);
continue;
}