From: Felipe Pena Date: Mon, 25 Nov 2013 21:46:06 +0000 (-0200) Subject: - Rename command to "set break" X-Git-Tag: php-5.6.0alpha1~110^2~48 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bd87039a91990d989f4ee7bff5a5762e8f868e86;p=php - Rename command to "set break" --- diff --git a/phpdbg_set.c b/phpdbg_set.c index 7c73192007..f3265604d0 100644 --- a/phpdbg_set.c +++ b/phpdbg_set.c @@ -41,7 +41,7 @@ PHPDBG_SET(prompt) /* {{{ */ return SUCCESS; } /* }}} */ -PHPDBG_SET(breakpoint) /* {{{ */ +PHPDBG_SET(break) /* {{{ */ { switch (param->type) { case EMPTY_PARAM: diff --git a/phpdbg_set.h b/phpdbg_set.h index 37ed3973c3..c3afc0674d 100644 --- a/phpdbg_set.h +++ b/phpdbg_set.h @@ -27,13 +27,13 @@ PHPDBG_SET(prompt); PHPDBG_SET(color); PHPDBG_SET(oplog); -PHPDBG_SET(breakpoint); +PHPDBG_SET(break); static const phpdbg_command_t phpdbg_set_commands[] = { PHPDBG_COMMAND_D_EX(prompt, "usage: set prompt ", 'p', set_prompt, NULL, 0), PHPDBG_COMMAND_D_EX(color, "usage: set color ", 'c', set_color, NULL, 1), PHPDBG_COMMAND_D_EX(oplog, "usage: set oplog ", 'O', set_oplog, NULL, 0), - PHPDBG_COMMAND_D_EX(breakpoint, "usage: set breakpoint ", 'b', set_breakpoint, NULL, 0), + PHPDBG_COMMAND_D_EX(break, "usage: set break ", 'b', set_break, NULL, 0), PHPDBG_END_COMMAND };