Skip to content

Commit 2f8b3ea

Browse files
avargitster
authored andcommitted
help.c: refactor drop_prefix() to use a "switch" statement"
Refactor the drop_prefix() function in in help.c to make it easier to strip prefixes from categories that aren't "CAT_guide". There are no functional changes here, by doing this we make a subsequent functional change's diff smaller. As before we first try to strip "git-" unconditionally, if that works we'll return the stripped string. Then we'll strip "git" if the command is in "CAT_guide". This means that we'd in principle strip "git-foo" down to "foo" if it's in CAT_guide. That doesn't make much sense, and we don't have such an entry in command-list.txt, but let's preserve that behavior for now. While we're at it remove a stray newline that had been added after the "return name;" statement. Signed-off-by: Ævar Arnfjörð Bjarmason <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 6a475b7 commit 2f8b3ea

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

help.c

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,19 @@ static struct category_description main_categories[] = {
4444
static const char *drop_prefix(const char *name, uint32_t category)
4545
{
4646
const char *new_name;
47+
const char *prefix = NULL;
4748

4849
if (skip_prefix(name, "git-", &new_name))
4950
return new_name;
50-
if (category == CAT_guide && skip_prefix(name, "git", &new_name))
51+
switch (category) {
52+
case CAT_guide:
53+
prefix = "git";
54+
break;
55+
}
56+
if (prefix && skip_prefix(name, prefix, &new_name))
5157
return new_name;
52-
return name;
5358

59+
return name;
5460
}
5561

5662
static void extract_cmds(struct cmdname_help **p_cmds, uint32_t mask)

0 commit comments

Comments
 (0)