Skip to content

Commit 09e5223

Browse files
mlauternikic
authored andcommitted
Fix #77767: phpdbg break command help message shows incorrect aliases
Previously the aliases for at and del were listed as A and d in the help message for break. This patch corrects the aliases to be @ and ~ respectively.
1 parent 41bc51c commit 09e5223

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

NEWS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ PHP NEWS
4141
. Fixed bug #77743 (Incorrect pi node insertion for jmpznz with identical
4242
successors). (Nikita)
4343

44+
- phpdbg:
45+
. Fixed bug #77767 (phpdbg break cmd aliases listed in help do not match
46+
actual aliases). (Miriam Lauter)
47+
4448
- sodium:
4549
. Fixed bug #77646 (sign_detached() strings not terminated). (Frank)
4650

sapi/phpdbg/phpdbg_help.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -544,8 +544,8 @@ phpdbg_help_text_t phpdbg_help_text[] = {
544544
"types:" CR CR
545545

546546
" **Target** **Alias** **Purpose**" CR
547-
" **at** **A** specify breakpoint by location and condition" CR
548-
" **del** **d** delete breakpoint by breakpoint identifier number" CR CR
547+
" **at** **@** specify breakpoint by location and condition" CR
548+
" **del** **~** delete breakpoint by breakpoint identifier number" CR CR
549549

550550
"**Break at** takes two arguments. The first is any valid target. The second "
551551
"is a valid PHP expression which will trigger the break in "

0 commit comments

Comments
 (0)