summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: e0af48e)
raw | patch | inline | side by side (parent: e0af48e)
author | Junio C Hamano <gitster@pobox.com> | |
Fri, 29 Aug 2008 15:16:30 +0000 (08:16 -0700) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sun, 31 Aug 2008 02:41:43 +0000 (19:41 -0700) |
This replaces hardcoded magic constants with symbolic ones for
readability, and swaps one if/else blocks to better match the
order in which 0/1/2 variables are handled to nearby codepath.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
readability, and swaps one if/else blocks to better match the
order in which 0/1/2 variables are handled to nearby codepath.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
xdiff/xmerge.c | patch | blob | history |
diff --git a/xdiff/xmerge.c b/xdiff/xmerge.c
index 29cdbea1ee32a71fa6f6ddffb4866ec3b67d6150..7dcd4055ae2090875c81ef9c1ad499d5f3b4e05e 100644 (file)
--- a/xdiff/xmerge.c
+++ b/xdiff/xmerge.c
xscr2 = xscr2->next;
continue;
}
- if (level < 1 || xscr1->i1 != xscr2->i1 ||
+ if (level == XDL_MERGE_MINIMAL || xscr1->i1 != xscr2->i1 ||
xscr1->chg1 != xscr2->chg1 ||
xscr1->chg2 != xscr2->chg2 ||
xdl_merge_cmp_lines(xe1, xscr1->i2,
chg0 = xscr1->i1 + xscr1->chg1 - i0;
chg1 = xscr1->i2 + xscr1->chg2 - i1;
chg2 = xscr2->i2 + xscr2->chg2 - i2;
- if (ffo > 0)
- chg2 += ffo;
- else {
+ if (ffo < 0) {
chg0 -= ffo;
chg1 -= ffo;
- }
+ } else
+ chg2 += ffo;
if (xdl_append_merge(&c, 0,
i0, chg0, i1, chg1, i2, chg2)) {
xdl_cleanup_merge(changes);
if (!changes)
changes = c;
/* refine conflicts */
- if (level > 1 &&
+ if (XDL_MERGE_ZEALOUS <= level &&
(xdl_refine_conflicts(xe1, xe2, changes, xpp) < 0 ||
- xdl_simplify_non_conflicts(xe1, changes, level > 2) < 0)) {
+ xdl_simplify_non_conflicts(xe1, changes,
+ XDL_MERGE_ZEALOUS < level) < 0)) {
xdl_cleanup_merge(changes);
return -1;
}