diff options
author | krakjoe <joe.watkins@live.co.uk> | 2014-02-19 00:33:49 +0000 |
---|---|---|
committer | krakjoe <joe.watkins@live.co.uk> | 2014-02-19 00:33:49 +0000 |
commit | e2e93ac259150fde9e3660838a2e836daa939acb (patch) | |
tree | 7a73a62d98cc35d3199fe66dd17d5eea75a2c0bf /phpdbg_list.c | |
parent | 1952750af600c759648d32a3b9badcb61f542f14 (diff) | |
download | php-git-e2e93ac259150fde9e3660838a2e836daa939acb.tar.gz |
work on parameters to commands
Diffstat (limited to 'phpdbg_list.c')
-rw-r--r-- | phpdbg_list.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpdbg_list.c b/phpdbg_list.c index 7177def8d6..a1bd8c0ff5 100644 --- a/phpdbg_list.c +++ b/phpdbg_list.c @@ -33,10 +33,10 @@ ZEND_EXTERN_MODULE_GLOBALS(phpdbg); const phpdbg_command_t phpdbg_list_commands[] = { - PHPDBG_COMMAND_D_EX(lines, "lists the specified lines", 'l', list_lines, NULL, 1), - PHPDBG_COMMAND_D_EX(class, "lists the specified class", 'c', list_class, NULL, 1), - PHPDBG_COMMAND_D_EX(method, "lists the specified method", 'm', list_method, NULL, 1), - PHPDBG_COMMAND_D_EX(func, "lists the specified function", 'f', list_func, NULL, 1), + PHPDBG_COMMAND_D_EX(lines, "lists the specified lines", 'l', list_lines, NULL, "l"), + PHPDBG_COMMAND_D_EX(class, "lists the specified class", 'c', list_class, NULL, "s"), + PHPDBG_COMMAND_D_EX(method, "lists the specified method", 'm', list_method, NULL, "m"), + PHPDBG_COMMAND_D_EX(func, "lists the specified function", 'f', list_func, NULL, "s"), PHPDBG_END_COMMAND }; |