Skip to content

Commit f3081da

Browse files
newrengitster
authored andcommitted
merge-recursive: rename MERGE_RECURSIVE_* to MERGE_VARIANT_*
I want to implement the same outward facing API as found within merge-recursive.h in a different merge strategy. However, that makes names like MERGE_RECURSIVE_{NORMAL,OURS,THEIRS} look a little funny; rename to MERGE_VARIANT_{NORMAL,OURS,THEIRS}. Signed-off-by: Elijah Newren <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 5bf7e57 commit f3081da

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

merge-recursive.c

+7-7
Original file line numberDiff line numberDiff line change
@@ -1045,10 +1045,10 @@ static int merge_3way(struct merge_options *opt,
10451045
ll_opts.variant = 0;
10461046
} else {
10471047
switch (opt->recursive_variant) {
1048-
case MERGE_RECURSIVE_OURS:
1048+
case MERGE_VARIANT_OURS:
10491049
ll_opts.variant = XDL_MERGE_FAVOR_OURS;
10501050
break;
1051-
case MERGE_RECURSIVE_THEIRS:
1051+
case MERGE_VARIANT_THEIRS:
10521052
ll_opts.variant = XDL_MERGE_FAVOR_THEIRS;
10531053
break;
10541054
default:
@@ -1355,15 +1355,15 @@ static int merge_mode_and_contents(struct merge_options *opt,
13551355
&b->oid);
13561356
} else if (S_ISLNK(a->mode)) {
13571357
switch (opt->recursive_variant) {
1358-
case MERGE_RECURSIVE_NORMAL:
1358+
case MERGE_VARIANT_NORMAL:
13591359
oidcpy(&result->blob.oid, &a->oid);
13601360
if (!oid_eq(&a->oid, &b->oid))
13611361
result->clean = 0;
13621362
break;
1363-
case MERGE_RECURSIVE_OURS:
1363+
case MERGE_VARIANT_OURS:
13641364
oidcpy(&result->blob.oid, &a->oid);
13651365
break;
1366-
case MERGE_RECURSIVE_THEIRS:
1366+
case MERGE_VARIANT_THEIRS:
13671367
oidcpy(&result->blob.oid, &b->oid);
13681368
break;
13691369
}
@@ -3795,9 +3795,9 @@ int parse_merge_opt(struct merge_options *opt, const char *s)
37953795
if (!s || !*s)
37963796
return -1;
37973797
if (!strcmp(s, "ours"))
3798-
opt->recursive_variant = MERGE_RECURSIVE_OURS;
3798+
opt->recursive_variant = MERGE_VARIANT_OURS;
37993799
else if (!strcmp(s, "theirs"))
3800-
opt->recursive_variant = MERGE_RECURSIVE_THEIRS;
3800+
opt->recursive_variant = MERGE_VARIANT_THEIRS;
38013801
else if (!strcmp(s, "subtree"))
38023802
opt->subtree_shift = "";
38033803
else if (skip_prefix(s, "subtree=", &arg))

merge-recursive.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ struct merge_options {
3232
/* xdiff-related options (patience, ignore whitespace, ours/theirs) */
3333
long xdl_opts;
3434
enum {
35-
MERGE_RECURSIVE_NORMAL = 0,
36-
MERGE_RECURSIVE_OURS,
37-
MERGE_RECURSIVE_THEIRS
35+
MERGE_VARIANT_NORMAL = 0,
36+
MERGE_VARIANT_OURS,
37+
MERGE_VARIANT_THEIRS
3838
} recursive_variant;
3939

4040
/* console output related options */

0 commit comments

Comments
 (0)