- WS changes

This commit is contained in:
Felipe Pena 2013-11-10 14:16:52 -02:00
parent c060093acf
commit 8532076c64

View file

@ -30,7 +30,8 @@ PHPDBG_HELP(exec) /* {{{ */
return SUCCESS;
} /* }}} */
PHPDBG_HELP(step) { /* {{{ */
PHPDBG_HELP(step) /* {{{ */
{
printf("You can enable and disable stepping at any phpdbg prompt during execution\n");
printf("For example:\n");
printf("\tphpdbg> stepping 1\n");
@ -39,7 +40,8 @@ PHPDBG_HELP(step) { /* {{{ */
return SUCCESS;
} /* }}} */
PHPDBG_HELP(next) { /* {{{ */
PHPDBG_HELP(next) /* {{{ */
{
printf("While stepping through execution, use the next command to step back into the vm and execute the next opcode");
return SUCCESS;
} /* }}} */
@ -61,7 +63,6 @@ PHPDBG_HELP(print) /* {{{ */
printf("Will show the opline @ 0\n");
printf("Available print commands:\n");
printf("\tNone\n");
return SUCCESS;
} /* }}} */
@ -86,7 +87,6 @@ PHPDBG_HELP(break) /* {{{ */
printf("For example:\n");
printf("\tphpdbg> break test.php:1\n");
printf("Will break execution on line 1 of test.php\n");
return SUCCESS;
} /* }}} */
@ -97,7 +97,8 @@ PHPDBG_HELP(cont) /* {{{ */
return SUCCESS;
} /* }}} */
PHPDBG_HELP(back) { /* {{{ */
PHPDBG_HELP(back) /* {{{ */
{
printf("The backtrace is gathered with the default debug_backtrace functionality.\n");
printf("You can set the limit on the trace, for example:\n");
printf("\tphpdbg> back 5\n");