Format the help list appropriately (as in older versions).

This commit is contained in:
Jan Vidar Krey 2011-12-28 10:45:02 +01:00
parent 66c77d5170
commit 7b392acbf5
1 changed files with 5 additions and 1 deletions

View File

@ -462,6 +462,7 @@ static int command_status(struct command_base* cbase, struct hub_user* user, str
static int command_help(struct command_base* cbase, struct hub_user* user, struct hub_command* cmd)
{
size_t n;
struct cbuffer* buf = cbuf_create(MAX_HELP_LINE);
struct command_handle* command = list_get_first(cmd->args);
@ -473,7 +474,10 @@ static int command_help(struct command_base* cbase, struct hub_user* user, struc
{
if (command_is_available(command, user))
{
cbuf_append_format(buf, "!%s%12s- %s\n", command->prefix, " ", command->description);
cbuf_append_format(buf, "!%s", command->prefix);
for (n = strlen(command->prefix); n < cbase->prefix_length_max; n++)
cbuf_append(buf, " ");
cbuf_append_format(buf, " - %s\n", command->description);
}
}
}