summaryrefslogtreecommitdiff
path: root/phpdbg_help.c
diff options
context:
space:
mode:
authorkrakjoe <joe.watkins@live.co.uk>2014-04-20 17:10:52 +0100
committerkrakjoe <joe.watkins@live.co.uk>2014-04-20 17:10:52 +0100
commit373b9ecd05e5c88fd224e9a081680e1109dbb4ed (patch)
treed40574ffc194c428765f2bc5c6c8ff1183c79f92 /phpdbg_help.c
parentfd74024a4940fd8fc10daf9181beebc44c21ca32 (diff)
downloadphp-git-373b9ecd05e5c88fd224e9a081680e1109dbb4ed.tar.gz
rename next to continue, cleanup help
Diffstat (limited to 'phpdbg_help.c')
-rw-r--r--phpdbg_help.c20
1 files changed, 9 insertions, 11 deletions
diff --git a/phpdbg_help.c b/phpdbg_help.c
index 331c28fdb2..4866f1e67e 100644
--- a/phpdbg_help.c
+++ b/phpdbg_help.c
@@ -318,30 +318,28 @@ phpdbg_help_text_t phpdbg_help_text[] = {
"**Information**" CR
" **list** list PHP source" CR
" **info** displays information on the debug session" CR
-" **help** provide help on a topic" CR
-" **print** print argument " CR
-" **frame** select a stack frame and print a stack frame summary" CR CR
+" **print** show opcodes " CR
+" **frame** select a stack frame and print a stack frame summary" CR
+" **help** provide help on a topic" CR CR
"**Starting and Stopping Execution**" CR
" **exec** set execution context" CR
" **run** attempt execution" CR
-" **step** Enable or disable per opcode stepping mode" CR
-" **next** continue execution" CR
+" **continue** continue execution" CR
" **until** continue execution up to the given location" CR
" **finish** continue up to end of the current execution frame" CR
" **leave** continue up to end of the current execution frame and halt after the calling instruction" CR
" **break** set a breakpoint at the specified target" CR
" **watch** set a watchpoint on $variable" CR
-" **ev** evaluate some code" CR
" **clear** clear one or all breakpoints" CR
" **clean** clean the execution environment" CR CR
"**Miscellaneous**" CR
-" **quiet** silence some output" CR
" **set** set the phpdbg configuration" CR
" **source** execute a phpdbginit script" CR
" **register** register a phpdbginit function as a command alias" CR
" **sh** shell a command" CR
+" **ev** evaluate some code" CR
" **quit** exit phpdbg" CR CR
"Type **help <command>** or (**help alias**) to get detailed help on any of the above commands, "
@@ -714,12 +712,12 @@ phpdbg_help_text_t phpdbg_help_text[] = {
},
//*********** what is the difference between n and s ???
-{"next",
-"The **next** command causes control to be passed back to the vm, continuing execution. The next "
-"opline will be executed if **step 1** is set. Otherwise execution will continue to the next "
+{"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
-"Note **next** will trigger a \"not running\" error if not executing."
+"Note **continue** will trigger a \"not running\" error if not executing."
},
{"print",