diff options
author | Bob Weinand <bobwei9@hotmail.com> | 2014-04-20 20:20:59 +0200 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2014-04-20 20:20:59 +0200 |
commit | 577c6ed0ce9983967622d8b7086dab0a4978a148 (patch) | |
tree | da58e9b24cb10c8beee75297230c72e858e0b7cd /phpdbg_help.c | |
parent | 422dc49c0d02f8ff8903d42a91bf8a1316d62211 (diff) | |
parent | f96feea00c112bc1bec3e7b677218f4b487d1152 (diff) | |
download | php-git-577c6ed0ce9983967622d8b7086dab0a4978a148.tar.gz |
Fixed stepping
Diffstat (limited to 'phpdbg_help.c')
-rw-r--r-- | phpdbg_help.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/phpdbg_help.c b/phpdbg_help.c index 74c59df4a6..39d8357dfc 100644 --- a/phpdbg_help.c +++ b/phpdbg_help.c @@ -801,13 +801,13 @@ phpdbg_help_text_t phpdbg_help_text[] = { " **Type** **Alias** **Purpose**" CR " **prompt** **p** set the prompt" CR " **color** **c** set color <element> <color>" CR -" **colors** **C** set colors <on|off>" CR -" **oplog** **O** set oplog output" CR +" **colors** **C** set colors [<on|off>]" CR +" **oplog** **O** set oplog [output]" CR " **break** **b** set break **id** <on|off>" CR -" **breaks** **B** set breaks <on|off>" CR -" **quiet** **q** set quiet <on|off>" CR -" **step** **s** step opcode-by-opcode <on|off>" CR -" **refcount** **r** set refcount <on|off> (refcount display upon hit watchpoint)" CR CR +" **breaks** **B** set breaks [<on|off>]" CR +" **quiet** **q** set quiet [<on|off>]" CR +" **stepping** **s** set stepping [<opcode|line>]" CR +" **refcount** **r** set refcount [<on|off>] " CR CR "Valid colors are **none**, **white**, **red**, **green**, **yellow**, **blue**, **purple**, " "**cyan** and **black**. All colours except **none** can be followed by an optional " @@ -826,6 +826,9 @@ phpdbg_help_text_t phpdbg_help_text[] = { " $P S c error red-bold" CR " Use red bold for errors" CR CR +" $P S refcount on" CR +" Enable refcount display when hitting watchpoints" CR CR + " $P S b 4 off" CR " Temporarily disable breakpoint 4. This can be subsequently reenabled by a **s b 4 on**." CR //*********** check oplog syntax |