From: Phillip Wood <phillip.wood123@gmail.com> To: Felipe Contreras <felipe.contreras@gmail.com>, git@vger.kernel.org Cc: "David Aguilar" <davvid@gmail.com>, "Junio C Hamano" <gitster@pobox.com>, "Sergey Organov" <sorganov@gmail.com>, "Bagas Sanjaya" <bagasdotme@gmail.com>, "Elijah Newren" <newren@gmail.com>, "Ævar Arnfjörð Bjarmason" <avarab@gmail.com>, "Denton Liu" <liu.denton@gmail.com> Subject: Re: [PATCH 6/7] xdiff: simplify style assignments Date: Thu, 10 Jun 2021 10:26:28 +0100 [thread overview] Message-ID: <cc8bbc34-1048-0e7b-c783-33f556843a3f@gmail.com> (raw) In-Reply-To: <20210609192842.696646-7-felipe.contreras@gmail.com> On 09/06/2021 20:28, Felipe Contreras wrote: I don't find the commit message explains this change very well > There is little value in checking that git_xmerge_style isn't 0 before > changing it's default value. I think the check is actually that git_xmerge_style isn't -1. Why is there little value in the check? > Most of the time it isn't 0 anyway, so just assign the value directly. Why to the times when it is zero (or -1) not matter? > Also, add the missing constant for the default value: XDL_MERGE_STYLE_MERGE. > > Additionally this change has the benefit that it gets rid of a Yoda > condition. > > No functional changes. I think that is probably correct but it would be helpful if the commit message offered a bit more explanation. Best Wishes Phillip > > Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> > --- > builtin/merge-file.c | 3 +-- > ll-merge.c | 3 +-- > xdiff-interface.c | 4 ++-- > xdiff/xdiff.h | 1 + > 4 files changed, 5 insertions(+), 6 deletions(-) > > diff --git a/builtin/merge-file.c b/builtin/merge-file.c > index a4097a596f..01951762ec 100644 > --- a/builtin/merge-file.c > +++ b/builtin/merge-file.c > @@ -55,8 +55,7 @@ int cmd_merge_file(int argc, const char **argv, const char *prefix) > if (startup_info->have_repository) { > /* Read the configuration file */ > git_config(git_xmerge_config, NULL); > - if (0 <= git_xmerge_style) > - xmp.style = git_xmerge_style; > + xmp.style = git_xmerge_style; > } > > argc = parse_options(argc, argv, prefix, options, merge_file_usage, 0); > diff --git a/ll-merge.c b/ll-merge.c > index 9a8a2c365c..4ce8d3f9cc 100644 > --- a/ll-merge.c > +++ b/ll-merge.c > @@ -124,8 +124,7 @@ static int ll_xdl_merge(const struct ll_merge_driver *drv_unused, > xmp.level = XDL_MERGE_ZEALOUS; > xmp.favor = opts->variant; > xmp.xpp.flags = opts->xdl_opts; > - if (git_xmerge_style >= 0) > - xmp.style = git_xmerge_style; > + xmp.style = git_xmerge_style; > if (marker_size > 0) > xmp.marker_size = marker_size; > xmp.ancestor = orig_name; > diff --git a/xdiff-interface.c b/xdiff-interface.c > index 64e2c4e301..19a030fbe2 100644 > --- a/xdiff-interface.c > +++ b/xdiff-interface.c > @@ -299,7 +299,7 @@ int xdiff_compare_lines(const char *l1, long s1, > return xdl_recmatch(l1, s1, l2, s2, flags); > } > > -int git_xmerge_style = -1; > +int git_xmerge_style = XDL_MERGE_STYLE_MERGE; > > int git_xmerge_config(const char *var, const char *value, void *cb) > { > @@ -309,7 +309,7 @@ int git_xmerge_config(const char *var, const char *value, void *cb) > if (!strcmp(value, "diff3")) > git_xmerge_style = XDL_MERGE_STYLE_DIFF3; > else if (!strcmp(value, "merge")) > - git_xmerge_style = 0; > + git_xmerge_style = XDL_MERGE_STYLE_MERGE; > /* > * Please update _git_checkout() in > * git-completion.bash when you add new merge config > diff --git a/xdiff/xdiff.h b/xdiff/xdiff.h > index 45883f5eb3..d24cd9f6ae 100644 > --- a/xdiff/xdiff.h > +++ b/xdiff/xdiff.h > @@ -64,6 +64,7 @@ extern "C" { > #define XDL_MERGE_FAVOR_UNION 3 > > /* merge output styles */ > +#define XDL_MERGE_STYLE_MERGE 0 > #define XDL_MERGE_STYLE_DIFF3 1 > > typedef struct s_mmfile { >
next prev parent reply other threads:[~2021-06-10 9:26 UTC|newest] Thread overview: 69+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-06-09 19:28 [PATCH 0/7] Make diff3 the default conflict style Felipe Contreras 2021-06-09 19:28 ` [PATCH 1/7] test: add merge style config test Felipe Contreras 2021-06-09 19:42 ` Eric Sunshine 2021-06-09 20:29 ` Felipe Contreras 2021-06-10 9:18 ` Phillip Wood 2021-06-10 13:26 ` Felipe Contreras 2021-06-10 14:54 ` Phillip Wood 2021-06-10 16:34 ` Felipe Contreras 2021-06-10 14:58 ` Phillip Wood 2021-06-10 16:47 ` Felipe Contreras 2021-06-11 9:19 ` Phillip Wood 2021-06-11 14:39 ` Felipe Contreras 2021-06-09 19:28 ` [PATCH 2/7] merge-tree: fix merge.conflictstyle handling Felipe Contreras 2021-06-09 19:28 ` [PATCH 3/7] notes: " Felipe Contreras 2021-06-09 19:28 ` [PATCH 4/7] checkout: " Felipe Contreras 2021-06-10 9:32 ` Phillip Wood 2021-06-10 14:11 ` Felipe Contreras 2021-06-10 14:50 ` Phillip Wood 2021-06-10 16:32 ` Felipe Contreras 2021-06-11 9:18 ` Phillip Wood 2021-06-11 14:34 ` Felipe Contreras 2021-06-11 9:18 ` Phillip Wood 2021-06-09 19:28 ` [PATCH 5/7] xdiff: rename XDL_MERGE_STYLE_DIFF3 Felipe Contreras 2021-06-10 9:21 ` Phillip Wood 2021-06-10 13:33 ` Felipe Contreras 2021-06-11 3:17 ` Junio C Hamano 2021-06-11 13:42 ` Felipe Contreras 2021-06-09 19:28 ` [PATCH 6/7] xdiff: simplify style assignments Felipe Contreras 2021-06-10 9:26 ` Phillip Wood [this message] 2021-06-10 13:50 ` Felipe Contreras 2021-06-09 19:28 ` [PATCH 7/7] xdiff: make diff3 the default conflictStyle Felipe Contreras 2021-06-10 6:41 ` Johannes Sixt 2021-06-10 7:53 ` Đoàn Trần Công Danh 2021-06-10 13:18 ` Felipe Contreras 2021-06-10 13:18 ` Felipe Contreras 2021-06-10 13:49 ` Jeff King 2021-06-10 16:00 ` Felipe Contreras 2021-06-10 16:31 ` Jeff King 2021-06-11 1:20 ` Junio C Hamano 2021-06-11 6:23 ` Johannes Sixt 2021-06-11 6:43 ` Junio C Hamano 2021-06-11 7:02 ` Johannes Sixt 2021-06-11 7:14 ` Junio C Hamano 2021-06-11 11:51 ` Sergey Organov 2021-06-11 15:32 ` Felipe Contreras 2021-06-11 15:52 ` Sergey Organov 2021-06-11 16:36 ` Felipe Contreras [not found] ` <CABPp-BHRQSF2_aYTBfpfnW4Bh3Hz7vLFj_QNGj8R4WeCS6_utw@mail.gmail.com> 2021-06-11 17:57 ` Felipe Contreras 2021-06-11 19:02 ` Elijah Newren 2021-06-11 21:05 ` Felipe Contreras 2021-06-11 21:40 ` Elijah Newren 2021-06-13 14:34 ` Felipe Contreras 2021-06-11 16:41 ` Johannes Sixt 2021-06-11 17:21 ` Felipe Contreras 2021-06-11 17:40 ` Sergey Organov 2021-06-11 18:10 ` Felipe Contreras 2021-06-11 18:22 ` Sergey Organov 2021-06-11 14:28 ` Felipe Contreras 2021-06-11 14:25 ` Felipe Contreras 2021-06-11 16:53 ` Johannes Sixt [not found] ` <CABPp-BH0aRiSUw03nSK6jHRNQ+zcpUzr6WjeJ5GpdUCqCKxbag@mail.gmail.com> 2021-06-11 17:32 ` Felipe Contreras 2021-06-11 17:57 ` Elijah Newren 2021-06-11 18:28 ` Felipe Contreras 2021-06-11 14:20 ` Felipe Contreras 2021-06-11 14:09 ` Felipe Contreras 2021-06-10 9:40 ` Phillip Wood 2021-06-10 14:19 ` Felipe Contreras 2021-06-17 17:40 ` [PATCH 0/7] Make diff3 the default conflict style Phillip Wood 2021-06-17 18:24 ` Felipe Contreras
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style List information: http://vger.kernel.org/majordomo-info.html * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=cc8bbc34-1048-0e7b-c783-33f556843a3f@gmail.com \ --to=phillip.wood123@gmail.com \ --cc=avarab@gmail.com \ --cc=bagasdotme@gmail.com \ --cc=davvid@gmail.com \ --cc=felipe.contreras@gmail.com \ --cc=git@vger.kernel.org \ --cc=gitster@pobox.com \ --cc=liu.denton@gmail.com \ --cc=newren@gmail.com \ --cc=phillip.wood@dunelm.org.uk \ --cc=sorganov@gmail.com \ --subject='Re: [PATCH 6/7] xdiff: simplify style assignments' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Code repositories for project(s) associated with this inbox: https://80x24.org/mirrors/git.git This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).