summaryrefslogtreecommitdiff
path: root/phpdbg_help.c
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2014-04-20 16:55:49 +0200
committerBob Weinand <bobwei9@hotmail.com>2014-04-20 16:55:49 +0200
commit56293fc0dd288f1c1a68880b6055f2eca8dad0e2 (patch)
tree60888abc64988a8f5aff3975af7adf63294f3037 /phpdbg_help.c
parente097919f160391c23d93d3ad9a94a505d7c230d8 (diff)
downloadphp-git-56293fc0dd288f1c1a68880b6055f2eca8dad0e2.tar.gz
Update help
Diffstat (limited to 'phpdbg_help.c')
-rw-r--r--phpdbg_help.c16
1 files changed, 4 insertions, 12 deletions
diff --git a/phpdbg_help.c b/phpdbg_help.c
index 331c28fdb2..a00f445638 100644
--- a/phpdbg_help.c
+++ b/phpdbg_help.c
@@ -325,7 +325,7 @@ phpdbg_help_text_t phpdbg_help_text[] = {
"**Starting and Stopping Execution**" CR
" **exec** set execution context" CR
" **run** attempt execution" CR
-" **step** Enable or disable per opcode stepping mode" CR
+" **step** continue execution until other line is reached" CR
" **next** continue execution" CR
" **until** continue execution up to the given location" CR
" **finish** continue up to end of the current execution frame" CR
@@ -861,20 +861,12 @@ phpdbg_help_text_t phpdbg_help_text[] = {
},
{"step",
-"You can enable and disable **stepping** mode at the phpdbg prompt during execution. When "
-"stepping mode is enabled, execution will be step through opcode by opcode." CR CR
+"Execute opcodes until beginning on next line" CR CR
"**Examples**" CR CR
-" $P step 1" CR
-" $P s 1" CR
-" Will enable stepping" CR CR
-"While stepping is enabled you are presented with an interactive prompt after the execution of "
-"each opcode." CR CR
-
-"Note that when executing the **finish** and **leave** commands, and oplines within the current "
-"execution frame will be skipped in line with the command behaviour. Stepping will resume on exit "
-"from the current frame."
+" $P s" CR
+" Will continue and break again in the next encountered line" CR CR
},
{"until",