From e97fcb4592924ce24c6975747c21860e2bec7ab1 Mon Sep 17 00:00:00 2001 From: krakjoe Date: Mon, 18 Nov 2013 00:27:21 +0000 Subject: [PATCH] try another layout --- phpdbg_prompt.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); } } -- 2.50.1