From: krakjoe Date: Mon, 18 Nov 2013 00:27:21 +0000 (+0000) Subject: try another layout X-Git-Tag: php-5.6.0alpha1~110^2~251 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e97fcb4592924ce24c6975747c21860e2bec7ab1;p=php try another layout --- diff --git a/phpdbg_prompt.c b/phpdbg_prompt.c index 80c1daab80..b45c23f838 100644 --- a/phpdbg_prompt.c +++ b/phpdbg_prompt.c @@ -593,17 +593,17 @@ static PHPDBG_COMMAND(aliases) /* {{{ */ if (prompt_command->subs) { const phpdbg_command_t *sub_command = prompt_command->subs; phpdbg_writeln(EMPTY); - phpdbg_writeln("\t%c -> %s", prompt_command->alias, prompt_command->name); + phpdbg_writeln(" %c -> %s", prompt_command->alias, prompt_command->name); while (sub_command && sub_command->name) { if (sub_command->alias) { - phpdbg_writeln("\t|--- %c -> %s\t%s", sub_command->alias, + phpdbg_writeln(" |-------- %c -> %s\t%s", sub_command->alias, sub_command->name, sub_command->tip); } ++sub_command; } phpdbg_writeln(EMPTY); } else { - phpdbg_writeln("\t%c -> %s\t%s", prompt_command->alias, + phpdbg_writeln(" %c -> %s\t%s", prompt_command->alias, prompt_command->name, prompt_command->tip); } }