diff options
author | krakjoe <joe.watkins@live.co.uk> | 2014-04-20 17:10:52 +0100 |
---|---|---|
committer | krakjoe <joe.watkins@live.co.uk> | 2014-04-20 17:10:52 +0100 |
commit | 373b9ecd05e5c88fd224e9a081680e1109dbb4ed (patch) | |
tree | d40574ffc194c428765f2bc5c6c8ff1183c79f92 /phpdbg_prompt.c | |
parent | fd74024a4940fd8fc10daf9181beebc44c21ca32 (diff) | |
download | php-git-373b9ecd05e5c88fd224e9a081680e1109dbb4ed.tar.gz |
rename next to continue, cleanup help
Diffstat (limited to 'phpdbg_prompt.c')
-rw-r--r-- | phpdbg_prompt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpdbg_prompt.c b/phpdbg_prompt.c index c3971ccef4..1b1cb25215 100644 --- a/phpdbg_prompt.c +++ b/phpdbg_prompt.c @@ -44,7 +44,7 @@ int yyparse(phpdbg_param_t *stack, yyscan_t scanner); const phpdbg_command_t phpdbg_prompt_commands[] = { PHPDBG_COMMAND_D(exec, "set execution context", 'e', NULL, "s"), PHPDBG_COMMAND_D(step, "step through execution", 's', NULL, "b"), - PHPDBG_COMMAND_D(next, "continue execution", 'n', NULL, 0), + PHPDBG_COMMAND_D(continue,"continue execution", 'c', NULL, 0), PHPDBG_COMMAND_D(run, "attempt execution", 'r', NULL, "|s"), PHPDBG_COMMAND_D(ev, "evaluate some code", 0, NULL, "i"), PHPDBG_COMMAND_D(until, "continue past the current line", 'u', NULL, 0), @@ -433,7 +433,7 @@ PHPDBG_COMMAND(step) /* {{{ */ return SUCCESS; } /* }}} */ -PHPDBG_COMMAND(next) /* {{{ */ +PHPDBG_COMMAND(continue) /* {{{ */ { return PHPDBG_NEXT; } /* }}} */ |