diff options
author | krakjoe <joe.watkins@live.co.uk> | 2014-02-19 08:33:54 +0000 |
---|---|---|
committer | krakjoe <joe.watkins@live.co.uk> | 2014-02-19 08:33:54 +0000 |
commit | 996182993da1c35e8c35a3188b4c1adb764320f8 (patch) | |
tree | e276290e0d74f0075eb076378b9b3248baa92828 /phpdbg_break.c | |
parent | e2e93ac259150fde9e3660838a2e836daa939acb (diff) | |
download | php-git-996182993da1c35e8c35a3188b4c1adb764320f8.tar.gz |
remove input_t
support single char aliases
...
Diffstat (limited to 'phpdbg_break.c')
-rw-r--r-- | phpdbg_break.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpdbg_break.c b/phpdbg_break.c index 870f68a481..aeaf5973f0 100644 --- a/phpdbg_break.c +++ b/phpdbg_break.c @@ -38,8 +38,8 @@ const phpdbg_command_t phpdbg_break_commands[] = { PHPDBG_COMMAND_D_EX(op, "specify breakpoint by opcode", 'O', break_op, NULL, "s"), PHPDBG_COMMAND_D_EX(on, "specify breakpoint by condition", 'o', break_on, NULL, "c"), PHPDBG_COMMAND_D_EX(at, "specify breakpoint by location and condition", 'A', break_at, NULL, "*c"), - PHPDBG_COMMAND_D_EX(lineno, "specify breakpoint by line of currently executing file", 'l', break_lineno, NULL, "l"), - PHPDBG_COMMAND_D_EX(del, "delete breakpoint by identifier number", 'd', break_del, NULL, "l"), + PHPDBG_COMMAND_D_EX(lineno, "specify breakpoint by line of currently executing file", 'l', break_lineno, NULL, "n"), + PHPDBG_COMMAND_D_EX(del, "delete breakpoint by identifier number", 'd', break_del, NULL, "n"), PHPDBG_END_COMMAND }; @@ -109,7 +109,7 @@ PHPDBG_BREAK(on) /* {{{ */ PHPDBG_BREAK(at) /* {{{ */ { - phpdbg_set_breakpoint_at(param, input TSRMLS_CC); + phpdbg_set_breakpoint_at(param TSRMLS_CC); return SUCCESS; } /* }}} */ |