diff options
author | krakjoe <joe.watkins@live.co.uk> | 2013-11-26 16:00:28 +0000 |
---|---|---|
committer | krakjoe <joe.watkins@live.co.uk> | 2013-11-26 16:00:28 +0000 |
commit | 969e659c4abb128017919f327aa127db36f49796 (patch) | |
tree | c3f6326a3e9e48de55ed508be049bfb918fb3843 /phpdbg_info.h | |
parent | 6d95449e0a0f5ceb326a6fe7df9c2764ca4722e5 (diff) | |
parent | 6ba73338dd34a2a80e0dd25ca333bfc0b859a930 (diff) | |
download | php-git-969e659c4abb128017919f327aa127db36f49796.tar.gz |
Merge branch 'master' of https://github.com/krakjoe/phpdbg
Diffstat (limited to 'phpdbg_info.h')
-rw-r--r-- | phpdbg_info.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/phpdbg_info.h b/phpdbg_info.h index 23fcae6902..8b0f117818 100644 --- a/phpdbg_info.h +++ b/phpdbg_info.h @@ -33,14 +33,14 @@ PHPDBG_INFO(vars); PHPDBG_INFO(literal); static const phpdbg_command_t phpdbg_info_commands[] = { - PHPDBG_COMMAND_D_EX(break, "show breakpoints", 'b', info_break, NULL, 0), - PHPDBG_COMMAND_D_EX(files, "lists included files", 'F', info_files, NULL, 0), - PHPDBG_COMMAND_D_EX(classes, "lists loaded classes", 'c', info_classes, NULL, 0), - PHPDBG_COMMAND_D_EX(funcs, "lists loaded classes", 'f', info_funcs, NULL, 0), - PHPDBG_COMMAND_D_EX(error, "show the last error", 'e', info_error, NULL, 0), - PHPDBG_COMMAND_D_EX(vars, "show active variables", 'v', info_vars, NULL, 0), - PHPDBG_COMMAND_D_EX(literal, "show active literal constants", 'l', info_literal, NULL, 0), - PHPDBG_END_COMMAND + PHPDBG_COMMAND_D_EX(break, "show breakpoints", 'b', info_break, NULL, 0), + PHPDBG_COMMAND_D_EX(files, "lists included files", 'F', info_files, NULL, 0), + PHPDBG_COMMAND_D_EX(classes, "lists loaded classes", 'c', info_classes, NULL, 0), + PHPDBG_COMMAND_D_EX(funcs, "lists loaded classes", 'f', info_funcs, NULL, 0), + PHPDBG_COMMAND_D_EX(error, "show the last error", 'e', info_error, NULL, 0), + PHPDBG_COMMAND_D_EX(vars, "show active variables", 'v', info_vars, NULL, 0), + PHPDBG_COMMAND_D_EX(literal, "show active literal constants", 'l', info_literal, NULL, 0), + PHPDBG_END_COMMAND }; #endif /* PHPDBG_INFO_H */ |