From: Junio C Hamano <gitster@pobox.com>
To: Amisha Chhajed <amishhhaaaa@gmail.com>
Cc: git@vger.kernel.org, sunshine@sunshineco.com, avarab@gmail.com
Subject: Re: [PATCH v3 2/2] help: cleanup the contruction of keys_uniq
Date: Sat, 21 Feb 2026 21:05:57 -0800 [thread overview]
Message-ID: <xmqqwm05qsei.fsf@gitster.g> (raw)
In-Reply-To: <20260221162359.43336-2-amishhhaaaa@gmail.com> (Amisha Chhajed's message of "Sat, 21 Feb 2026 21:53:59 +0530")
Amisha Chhajed <amishhhaaaa@gmail.com> writes:
> From: Amisha Chhajed <136238836+amishhaa@users.noreply.github.com>
>
> +static void show_config_sections(struct string_list *keys)
> +{
> ...
> +}
> +
> +static void show_config_vars(struct string_list *keys)
> +{
> ...
> +}
The striking similarity of the body of the loops in these two
functions bothered me enough to try writing this; the result does
not look too bad, I think.
By the way, I'd really prefer to see contributors *NOT* to use
undeliverable and/or bouncing e-mail addresses when working on this
project, as I'd always have to edit the Cc: list to avoid getting
bounces.
Thanks.
builtin/help.c | 72 ++++++++++++++++++++++------------------------------------
1 file changed, 27 insertions(+), 45 deletions(-)
diff --git c/builtin/help.c w/builtin/help.c
index b70de09864..bc5c5a556c 100644
--- c/builtin/help.c
+++ w/builtin/help.c
@@ -120,36 +120,37 @@ static void show_config_human(struct string_list *keys)
}
}
-static void show_config_sections(struct string_list *keys)
+static void grab_leading_part(struct string_list *keys, const char *var, int use_dot)
{
- struct string_list keys_uniq = STRING_LIST_INIT_DUP;
- struct strbuf sb = STRBUF_INIT;
- struct string_list_item *item;
+ const char *cut = NULL;
- for (size_t i = 0; i < keys->nr; i++) {
- const char *var = keys->items[i].string;
- const char *dot = strchr(var, '.');
- const char *wildcard = strchr(var, '*');
- const char *tag = strchr(var, '<');
- const char *cut;
-
- if (dot)
- cut = dot;
- else if (wildcard && tag)
- cut = wildcard < tag ? wildcard : tag;
- else if (wildcard)
- cut = wildcard;
- else if (tag)
- cut = tag;
- else {
- string_list_append(&keys_uniq, var);
- continue;
- }
+ if (use_dot)
+ cut = strchr(var, use_dot);
+ if (!cut) {
+ size_t prefix_len = strcspn(var, "*<");
+ if (var[prefix_len])
+ cut = var + prefix_len;
+ }
+
+ if (!cut)
+ string_list_append(keys, var);
+ else {
+ struct strbuf sb = STRBUF_INIT;
strbuf_add(&sb, var, cut - var);
- string_list_append(&keys_uniq, sb.buf);
+ string_list_append(keys, sb.buf);
strbuf_release(&sb);
}
+}
+
+static void show_config_sections(struct string_list *keys)
+{
+ struct string_list keys_uniq = STRING_LIST_INIT_DUP;
+ struct string_list_item *item;
+
+ for (size_t i = 0; i < keys->nr; i++)
+ grab_leading_part(&keys_uniq, keys->items[i].string, '.');
+
string_list_sort_u(&keys_uniq, 0);
for_each_string_list_item(item, &keys_uniq)
puts(item->string);
@@ -159,30 +160,11 @@ static void show_config_sections(struct string_list *keys)
static void show_config_vars(struct string_list *keys)
{
struct string_list keys_uniq = STRING_LIST_INIT_DUP;
- struct strbuf sb = STRBUF_INIT;
struct string_list_item *item;
- for (size_t i = 0; i < keys->nr; i++) {
- const char *var = keys->items[i].string;
- const char *wildcard = strchr(var, '*');
- const char *tag = strchr(var, '<');
- const char *cut;
-
- if (wildcard && tag)
- cut = wildcard < tag ? wildcard : tag;
- else if (wildcard)
- cut = wildcard;
- else if (tag)
- cut = tag;
- else {
- string_list_append(&keys_uniq, var);
- continue;
- }
+ for (size_t i = 0; i < keys->nr; i++)
+ grab_leading_part(&keys_uniq, keys->items[i].string, '\0');
- strbuf_add(&sb, var, cut - var);
- string_list_append(&keys_uniq, sb.buf);
- strbuf_release(&sb);
- }
string_list_sort_u(&keys_uniq, 0);
for_each_string_list_item(item, &keys_uniq)
puts(item->string);
next prev parent reply other threads:[~2026-02-22 5:06 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-12 4:10 [PATCH 0/2] clean leftover calls to string_list_remove_duplicates Amisha Chhajed
2026-02-12 4:10 ` [PATCH 1/2] sparse-checkout: use string_list_sort_u Amisha Chhajed
2026-02-12 19:30 ` Junio C Hamano
2026-02-12 4:10 ` [PATCH 2/2] help: ensure &keys_uniq follows sort -u Amisha Chhajed
2026-02-12 19:58 ` Junio C Hamano
2026-02-12 21:29 ` Amisha Chhajed
2026-02-12 21:37 ` Junio C Hamano
2026-02-13 3:37 ` [PATCH v2 1/2] sparse-checkout: use string_list_sort_u Amisha Chhajed
2026-02-13 3:37 ` [PATCH v2 2/2] help: cleanup the contruction of keys_uniq Amisha Chhajed
2026-02-13 4:30 ` Junio C Hamano
2026-02-13 5:02 ` Eric Sunshine
2026-02-13 16:57 ` Junio C Hamano
2026-02-21 16:28 ` Amisha Chhajed
2026-02-21 16:23 ` [PATCH v3 1/2] sparse-checkout: use string_list_sort_u Amisha Chhajed
2026-02-21 16:23 ` [PATCH v3 2/2] help: cleanup the contruction of keys_uniq Amisha Chhajed
2026-02-22 5:05 ` Junio C Hamano [this message]
2026-02-22 9:47 ` Amisha Chhajed
2026-02-26 16:45 ` Junio C Hamano
2026-02-28 10:51 ` Amisha Chhajed
2026-03-02 16:06 ` Junio C Hamano
2026-02-22 2:44 ` [PATCH v3 1/2] sparse-checkout: use string_list_sort_u Junio C Hamano
2026-02-28 10:46 ` [PATCH v4 0/1] Make keys_uniq stop depending on sort of keys_uniq Amisha Chhajed
2026-02-28 10:46 ` [PATCH v4 1/1] help: cleanup the contruction " Amisha Chhajed
2026-03-02 16:04 ` Junio C Hamano
2026-03-11 19:48 ` Amisha Chhajed
2026-03-11 21:11 ` Junio C Hamano
2026-03-11 21:39 ` Eric Sunshine
2026-03-11 21:50 ` Junio C Hamano
2026-03-11 21:54 ` Eric Sunshine
2026-03-11 19:24 ` [PATCH v5] " Amisha Chhajed
2026-03-11 19:46 ` Junio C Hamano
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=xmqqwm05qsei.fsf@gitster.g \
--to=gitster@pobox.com \
--cc=amishhhaaaa@gmail.com \
--cc=avarab@gmail.com \
--cc=git@vger.kernel.org \
--cc=sunshine@sunshineco.com \
/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
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox