diff options
author | Bob Weinand <bobwei9@hotmail.com> | 2014-04-20 19:55:44 +0200 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2014-04-20 19:55:44 +0200 |
commit | 422dc49c0d02f8ff8903d42a91bf8a1316d62211 (patch) | |
tree | 9f0215dc5f6705c051d6b8f176feb1a920f45c77 /phpdbg_prompt.c | |
parent | 56293fc0dd288f1c1a68880b6055f2eca8dad0e2 (diff) | |
parent | 373b9ecd05e5c88fd224e9a081680e1109dbb4ed (diff) | |
download | php-git-422dc49c0d02f8ff8903d42a91bf8a1316d62211.tar.gz |
Merge branch 'master' of https://github.com/krakjoe/phpdbg
Conflicts:
phpdbg_help.c
phpdbg_prompt.c
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 6eb7481c5e..fe2d7177ef 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, 0), - 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), @@ -429,7 +429,7 @@ PHPDBG_COMMAND(step) /* {{{ */ return PHPDBG_NEXT; } /* }}} */ -PHPDBG_COMMAND(next) /* {{{ */ +PHPDBG_COMMAND(continue) /* {{{ */ { return PHPDBG_NEXT; } /* }}} */ |