]> granicus.if.org Git - php/commitdiff
try another layout
authorkrakjoe <joe.watkins@live.co.uk>
Mon, 18 Nov 2013 00:27:21 +0000 (00:27 +0000)
committerkrakjoe <joe.watkins@live.co.uk>
Mon, 18 Nov 2013 00:27:21 +0000 (00:27 +0000)
phpdbg_prompt.c

index 80c1daab80284cde5684e9666c62249e764cbed1..b45c23f838fa340d6ae06ad51f456a80dfb3b420 100644 (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);
                        }
                }