From 3d6a4cbc634db0e056f92cb3c9f7eedbd93da209 Mon Sep 17 00:00:00 2001 From: krakjoe Date: Mon, 25 Nov 2013 16:43:23 +0000 Subject: [PATCH] consistent ordering --- phpdbg_help.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }; -- 2.50.1