summaryrefslogtreecommitdiff
path: root/phpdbg_help.h
diff options
context:
space:
mode:
authorkrakjoe <joe.watkins@live.co.uk>2013-11-24 15:24:12 +0000
committerkrakjoe <joe.watkins@live.co.uk>2013-11-24 15:24:12 +0000
commite99fd228661163f152e97ebceb102929af11c092 (patch)
tree1f235e501e60186439e934032ac83467a5702673 /phpdbg_help.h
parentc7ef093095fa1a8c139b53643b96b997643ee643 (diff)
downloadphp-git-e99fd228661163f152e97ebceb102929af11c092.tar.gz
move oplog command to set commands
add help for set commands move set down in the list of prompt commands
Diffstat (limited to 'phpdbg_help.h')
-rw-r--r--phpdbg_help.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpdbg_help.h b/phpdbg_help.h
index 8ec9ee235f..d1e37ace5e 100644
--- a/phpdbg_help.h
+++ b/phpdbg_help.h
@@ -47,7 +47,7 @@ PHPDBG_HELP(back);
PHPDBG_HELP(frame);
PHPDBG_HELP(quiet);
PHPDBG_HELP(list);
-PHPDBG_HELP(oplog);
+PHPDBG_HELP(set);
PHPDBG_HELP(register);
PHPDBG_HELP(options);
PHPDBG_HELP(shell);
@@ -74,7 +74,7 @@ static const phpdbg_command_t phpdbg_help_commands[] = {
PHPDBG_COMMAND_D_EX(frame, "switch to a frame in the current stack for inspection", 'f', help_frame, NULL, 0),
PHPDBG_COMMAND_D_EX(quiet, "be quiet during execution", 'Q', help_quiet, NULL, 0),
PHPDBG_COMMAND_D_EX(list, "list code gives you quick access to code", 'l', help_list, NULL, 0),
- PHPDBG_COMMAND_D_EX(oplog, "keep clutter off the screen by logging oplines", 'O', help_oplog, NULL, 0),
+ PHPDBG_COMMAND_D_EX(set, "configure how phpdbg looks and behaves", 'S', help_set, NULL, 0),
PHPDBG_COMMAND_D_EX(register, "register a function for use as a command", 'R', help_register,NULL, 0),
PHPDBG_COMMAND_D_EX(options, "show information about command line options", 'o', help_options, NULL, 0),
PHPDBG_COMMAND_D_EX(shell, "execute system commands with direct shell access", '-', help_shell, NULL, 0),