Skip to content

Commit

Permalink
align
Browse files Browse the repository at this point in the history
  • Loading branch information
krakjoe committed Nov 20, 2013
1 parent baff6e1 commit f92de15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions phpdbg_prompt.c
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,7 @@ static PHPDBG_COMMAND(aliases) /* {{{ */
if (prompt_command->subs) {
const phpdbg_command_t *sub_command = prompt_command->subs;
phpdbg_writeln(EMPTY);
phpdbg_writeln(" %c -> %s", prompt_command->alias, prompt_command->name);
phpdbg_writeln(" %c -> %9s", prompt_command->alias, prompt_command->name);
while (sub_command && sub_command->name) {
if (sub_command->alias) {
phpdbg_writeln(" |-------- %c -> %15s\t%s", sub_command->alias,
Expand All @@ -793,7 +793,7 @@ static PHPDBG_COMMAND(aliases) /* {{{ */
}
phpdbg_writeln(EMPTY);
} else {
phpdbg_writeln(" %c -> %s\t%s", prompt_command->alias,
phpdbg_writeln(" %c -> %9s\t\t\t%s", prompt_command->alias,
prompt_command->name, prompt_command->tip);
}
}
Expand Down

0 comments on commit f92de15

Please sign in to comment.