From: krakjoe Date: Mon, 25 Nov 2013 16:43:23 +0000 (+0000) Subject: consistent ordering X-Git-Tag: php-5.6.0alpha1~110^2~59 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3d6a4cbc634db0e056f92cb3c9f7eedbd93da209;p=php consistent ordering --- diff --git a/phpdbg_help.h b/phpdbg_help.h index f9306e5c61..7a50b4ddd3 100644 --- a/phpdbg_help.h +++ b/phpdbg_help.h @@ -48,9 +48,9 @@ PHPDBG_HELP(frame); PHPDBG_HELP(quiet); PHPDBG_HELP(list); PHPDBG_HELP(set); -PHPDBG_HELP(source); PHPDBG_HELP(register); PHPDBG_HELP(options); +PHPDBG_HELP(source); PHPDBG_HELP(shell); /** @@ -76,9 +76,9 @@ static const phpdbg_command_t phpdbg_help_commands[] = { 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(set, "configure how phpdbg looks and behaves", 'S', help_set, NULL, 0), - PHPDBG_COMMAND_D_EX(source, "load a phpdbginit file at the console", '.', help_source, 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(source, "load a phpdbginit file at the console", '.', help_source, NULL, 0), PHPDBG_COMMAND_D_EX(shell, "execute system commands with direct shell access", '-', help_shell, NULL, 0), PHPDBG_END_COMMAND };