git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* [PATCH 0/2] Trivial cleanups
@ 2021-06-13  6:37 Felipe Contreras
  2021-06-13  6:37 ` [PATCH 1/2] config: avoid yoda conditions Felipe Contreras
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Felipe Contreras @ 2021-06-13  6:37 UTC (permalink / raw)
  To: git; +Cc: Martin Ågren, Felipe Contreras

These perfeclty good patches from 2014 weren't picked with no good
reason.

[1] https://lore.kernel.org/git/1398808178-3703-1-git-send-email-felipe.contreras@gmail.com/

Felipe Contreras (2):
  config: avoid yoda conditions
  add: avoid yoda condition

 builtin/add.c | 2 +-
 config.c      | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

-- 
2.32.0


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH 1/2] config: avoid yoda conditions
  2021-06-13  6:37 [PATCH 0/2] Trivial cleanups Felipe Contreras
@ 2021-06-13  6:37 ` Felipe Contreras
  2021-06-13  6:37 ` [PATCH 2/2] add: avoid yoda condition Felipe Contreras
  2021-06-15  1:45 ` [PATCH 0/2] Trivial cleanups Junio C Hamano
  2 siblings, 0 replies; 5+ messages in thread
From: Felipe Contreras @ 2021-06-13  6:37 UTC (permalink / raw)
  To: git; +Cc: Martin Ågren, Felipe Contreras

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
---
 config.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/config.c b/config.c
index f9c400ad30..7094530b04 100644
--- a/config.c
+++ b/config.c
@@ -1232,7 +1232,7 @@ static int git_parse_maybe_bool_text(const char *value)
 int git_parse_maybe_bool(const char *value)
 {
 	int v = git_parse_maybe_bool_text(value);
-	if (0 <= v)
+	if (v >= 0)
 		return v;
 	if (git_parse_int(value, &v))
 		return !!v;
@@ -1242,7 +1242,7 @@ int git_parse_maybe_bool(const char *value)
 int git_config_bool_or_int(const char *name, const char *value, int *is_bool)
 {
 	int v = git_parse_maybe_bool_text(value);
-	if (0 <= v) {
+	if (v >= 0) {
 		*is_bool = 1;
 		return v;
 	}
-- 
2.32.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/2] add: avoid yoda condition
  2021-06-13  6:37 [PATCH 0/2] Trivial cleanups Felipe Contreras
  2021-06-13  6:37 ` [PATCH 1/2] config: avoid yoda conditions Felipe Contreras
@ 2021-06-13  6:37 ` Felipe Contreras
  2021-06-15  1:45 ` [PATCH 0/2] Trivial cleanups Junio C Hamano
  2 siblings, 0 replies; 5+ messages in thread
From: Felipe Contreras @ 2021-06-13  6:37 UTC (permalink / raw)
  To: git; +Cc: Martin Ågren, Felipe Contreras

18 is younger than person's age.

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
---
 builtin/add.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/builtin/add.c b/builtin/add.c
index b773b5a499..8c2a5a5094 100644
--- a/builtin/add.c
+++ b/builtin/add.c
@@ -510,7 +510,7 @@ int cmd_add(int argc, const char **argv, const char *prefix)
 	argc--;
 	argv++;
 
-	if (0 <= addremove_explicit)
+	if (addremove_explicit >= 0)
 		addremove = addremove_explicit;
 	else if (take_worktree_changes && ADDREMOVE_DEFAULT)
 		addremove = 0; /* "-u" was given but not "-A" */
-- 
2.32.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 0/2] Trivial cleanups
  2021-06-13  6:37 [PATCH 0/2] Trivial cleanups Felipe Contreras
  2021-06-13  6:37 ` [PATCH 1/2] config: avoid yoda conditions Felipe Contreras
  2021-06-13  6:37 ` [PATCH 2/2] add: avoid yoda condition Felipe Contreras
@ 2021-06-15  1:45 ` Junio C Hamano
  2021-06-15  8:22   ` Felipe Contreras
  2 siblings, 1 reply; 5+ messages in thread
From: Junio C Hamano @ 2021-06-15  1:45 UTC (permalink / raw)
  To: Felipe Contreras; +Cc: git, Martin Ågren

Felipe Contreras <felipe.contreras@gmail.com> writes:

> These perfeclty good patches from 2014 weren't picked with no good
> reason.

These are safe no-op changes, but that does not mean they are good
patches.  It goes against Documentation/CodingGuidelines to bring it
back again now, which is a good enough reason not to look at them.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 0/2] Trivial cleanups
  2021-06-15  1:45 ` [PATCH 0/2] Trivial cleanups Junio C Hamano
@ 2021-06-15  8:22   ` Felipe Contreras
  0 siblings, 0 replies; 5+ messages in thread
From: Felipe Contreras @ 2021-06-15  8:22 UTC (permalink / raw)
  To: Junio C Hamano, Felipe Contreras; +Cc: git, Martin Ågren

Junio C Hamano wrote:
> Felipe Contreras <felipe.contreras@gmail.com> writes:
> 
> > These perfeclty good patches from 2014 weren't picked with no good
> > reason.
> 
> These are safe no-op changes, but that does not mean they are good
> patches.

They are not good patches because they are no-op, they are good changes
because they correct the flow of the code to match the flow in which
most people think.

  18 is younger than Mary

is not a sentence most people would agree make sense.

> It goes against Documentation/CodingGuidelines to bring it
> back again now, which is a good enough reason not to look at them.

These are not style issues. Refactoring code to make it easier to
understand goes beyond style.

Refactoring this:

	static int is_same_remote(struct remote *remote)
	{
		struct remote *fetch_remote = remote_get(NULL);
		return (!fetch_remote || fetch_remote == remote);
	}

	int same_remote = is_same_remote(remote);

To this:

	int same_remote = remote == remote_get(NULL);

Is more than just style.

But suit yourself. Sooner or later somebody is going to fix these
glaring mistakes. And they are mistakes [1].

  Yoda conditions are widely criticized for compromising readability by
  increasing the cognitive load of reading the code.

Cheers.

[1] https://en.wikipedia.org/wiki/Yoda_conditions#Criticism

-- 
Felipe Contreras

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-06-15  8:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-13  6:37 [PATCH 0/2] Trivial cleanups Felipe Contreras
2021-06-13  6:37 ` [PATCH 1/2] config: avoid yoda conditions Felipe Contreras
2021-06-13  6:37 ` [PATCH 2/2] add: avoid yoda condition Felipe Contreras
2021-06-15  1:45 ` [PATCH 0/2] Trivial cleanups Junio C Hamano
2021-06-15  8:22   ` Felipe Contreras

Code repositories for project(s) associated with this public 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).