diff options
author | Alex Riesen <raa.lkml@gmail.com> | 2008-08-28 19:15:33 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-08-28 21:49:55 -0700 |
commit | e321180ed3e22120e30bb350a5adecbe959e1241 (patch) | |
tree | d262d8693b204942da9326d67501df0124680f13 /builtin-help.c | |
parent | 63e8aea74e992bd8667e35a0e646110acc1f0d7c (diff) | |
download | git-e321180ed3e22120e30bb350a5adecbe959e1241.tar.gz git-e321180ed3e22120e30bb350a5adecbe959e1241.tar.xz |
Remove calculation of the longest command name from where it is not used
Just calculate it where it is needed - it is cheap and trivial,
as all the lengths are already there (stored when creating the
command lists).
Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-help.c')
-rw-r--r-- | builtin-help.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin-help.c b/builtin-help.c index 391f74937..9225102f6 100644 --- a/builtin-help.c +++ b/builtin-help.c @@ -418,7 +418,7 @@ int cmd_help(int argc, const char **argv, const char *prefix) { int nongit; const char *alias; - unsigned int longest = load_command_list("git-", &main_cmds, &other_cmds); + load_command_list("git-", &main_cmds, &other_cmds); setup_git_directory_gently(&nongit); git_config(git_help_config, NULL); @@ -428,7 +428,7 @@ int cmd_help(int argc, const char **argv, const char *prefix) if (show_all) { printf("usage: %s\n\n", git_usage_string); - list_commands("git commands", longest, &main_cmds, &other_cmds); + list_commands("git commands", &main_cmds, &other_cmds); printf("%s\n", git_more_info_string); return 0; } |