]> granicus.if.org Git - php/commitdiff
brifer
authorkrakjoe <joe.watkins@live.co.uk>
Mon, 18 Nov 2013 00:42:07 +0000 (00:42 +0000)
committerkrakjoe <joe.watkins@live.co.uk>
Mon, 18 Nov 2013 00:42:07 +0000 (00:42 +0000)
phpdbg_help.h
phpdbg_prompt.c

index 67a91910122ce2e6ee399a7316125a129bc5cac3..a13d47080a5f5fbce427904650d154e6fff8e57b 100644 (file)
@@ -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),
index b45c23f838fa340d6ae06ad51f456a80dfb3b420..96645f54f664da8ae3aa6bf728c898ebe561d181 100644 (file)
@@ -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),