diff options
author | krakjoe <joe.watkins@live.co.uk> | 2014-04-21 22:00:21 +0100 |
---|---|---|
committer | krakjoe <joe.watkins@live.co.uk> | 2014-04-21 22:00:21 +0100 |
commit | c1e12316f1126ae3b3867a38d6930cf66cfb0675 (patch) | |
tree | 170b48c04c0a2a0d222caca32f9eedb2c62e3845 /phpdbg_help.c | |
parent | e9668d4ce8512838d92b05aa47da02c85a37c486 (diff) | |
download | php-git-c1e12316f1126ae3b3867a38d6930cf66cfb0675.tar.gz |
fixup help, behaviour of step command when not executing
Diffstat (limited to 'phpdbg_help.c')
-rw-r--r-- | phpdbg_help.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/phpdbg_help.c b/phpdbg_help.c index 32a78cb063..f2d074ded6 100644 --- a/phpdbg_help.c +++ b/phpdbg_help.c @@ -711,11 +711,13 @@ phpdbg_help_text_t phpdbg_help_text[] = { "populate these tables for a given execution context." }, -//*********** what is the difference between n and s ??? {"continue", -"The **continue** command causes control to be passed back to the vm, continuing execution. The next " -"opline will be executed if **step** is set **on**. Otherwise execution will continue to the next " -"breakpoint or script completion" CR CR +"Continue with execution after hitting a break or watchpoint" CR CR + +"**Examples**" CR CR +" $P continue" CR +" $P c" CR +" Continue executing until the next break or watchpoint" CR CR "Note **continue** will trigger a \"not running\" error if not executing." }, @@ -863,7 +865,7 @@ phpdbg_help_text_t phpdbg_help_text[] = { }, {"step", -"Execute opcodes until beginning on next line" CR CR +"Execute opcodes until next line" CR CR "**Examples**" CR CR |