From: krakjoe Date: Mon, 18 Nov 2013 00:42:07 +0000 (+0000) Subject: brifer X-Git-Tag: php-5.6.0alpha1~110^2~250 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f9a66f0d4472747918923464869ff167ac8c3243;p=php brifer --- diff --git a/phpdbg_help.h b/phpdbg_help.h index 67a9191012..a13d47080a 100644 --- a/phpdbg_help.h +++ b/phpdbg_help.h @@ -54,11 +54,11 @@ PHPDBG_HELP(oplog); static const phpdbg_command_t phpdbg_help_commands[] = { PHPDBG_COMMAND_D_EX(exec, "the execution context should be a valid path", 'e', help_exec, NULL, 0), PHPDBG_COMMAND_D_EX(compile, "pre-compilation allows inspection of code before execution", 'c', help_compile, NULL, 0), - PHPDBG_COMMAND_D_EX(step, "stepping through execution allows inspection of the opline as it is executed", 's', help_step, NULL, 0), + PHPDBG_COMMAND_D_EX(step, "step through execution to break at every opcode", 's', help_step, NULL, 0), PHPDBG_COMMAND_D_EX(next, "continue executing while stepping or after breaking", 'n', help_next, NULL, 0), - PHPDBG_COMMAND_D_EX(run, "execution inside the phpdbg vm allows detailed inspection and debugging", 'r', help_run, NULL, 0), + PHPDBG_COMMAND_D_EX(run, "execute inside the phpdbg vm", 'r', help_run, NULL, 0), PHPDBG_COMMAND_D_EX(eval, "access to eval() allows you to affect the environment during execution", 'E', help_eval, NULL, 0), - PHPDBG_COMMAND_D_EX(until, "continue until the program reaches a source line different than the current one", 'u', help_until, NULL, 0), + PHPDBG_COMMAND_D_EX(until, "continue until the current line is executed", 'u', help_until, NULL, 0), PHPDBG_COMMAND_D_EX(finish, "continue until the current function has returned", 'f', help_finish, NULL, 0), PHPDBG_COMMAND_D_EX(leave, "continue until the current function is returning", 'L', help_leave, NULL, 0), PHPDBG_COMMAND_D_EX(print, "printing allows inspection of the execution environment", 'p', help_print, NULL, 0), diff --git a/phpdbg_prompt.c b/phpdbg_prompt.c index b45c23f838..96645f54f6 100644 --- a/phpdbg_prompt.c +++ b/phpdbg_prompt.c @@ -64,7 +64,7 @@ static const phpdbg_command_t phpdbg_prompt_commands[] = { PHPDBG_COMMAND_D(next, "continue execution", 'n', NULL, 0), PHPDBG_COMMAND_D(run, "attempt execution", 'r', NULL, 0), PHPDBG_COMMAND_D(eval, "evaluate some code", 'E', NULL, 1), - PHPDBG_COMMAND_D(until, "continue until reaches next line", 'u', NULL, 0), + PHPDBG_COMMAND_D(until, "continue past the current line", 'u', NULL, 0), PHPDBG_COMMAND_D(finish, "continue past the end of the stack", 'f', NULL, 0), PHPDBG_COMMAND_D(leave, "continue until the end of the stack", 'L', NULL, 0), PHPDBG_COMMAND_D(print, "print something", 'p', phpdbg_print_commands, 1),