1
0
mirror of https://github.com/php/php-src.git synced 2026-04-23 16:08:35 +02:00

try another layout

This commit is contained in:
krakjoe
2013-11-18 00:27:21 +00:00
parent 27ae287c49
commit e97fcb4592
+3 -3
View File
@@ -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);
}
}