Skip to content

Commit bd87039

Browse files
committed
- Rename command to "set break"
1 parent d50e254 commit bd87039

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

phpdbg_set.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ PHPDBG_SET(prompt) /* {{{ */
4141
return SUCCESS;
4242
} /* }}} */
4343

44-
PHPDBG_SET(breakpoint) /* {{{ */
44+
PHPDBG_SET(break) /* {{{ */
4545
{
4646
switch (param->type) {
4747
case EMPTY_PARAM:

phpdbg_set.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@
2727
PHPDBG_SET(prompt);
2828
PHPDBG_SET(color);
2929
PHPDBG_SET(oplog);
30-
PHPDBG_SET(breakpoint);
30+
PHPDBG_SET(break);
3131

3232
static const phpdbg_command_t phpdbg_set_commands[] = {
3333
PHPDBG_COMMAND_D_EX(prompt, "usage: set prompt <string>", 'p', set_prompt, NULL, 0),
3434
PHPDBG_COMMAND_D_EX(color, "usage: set color <element> <color>", 'c', set_color, NULL, 1),
3535
PHPDBG_COMMAND_D_EX(oplog, "usage: set oplog <output>", 'O', set_oplog, NULL, 0),
36-
PHPDBG_COMMAND_D_EX(breakpoint, "usage: set breakpoint <on|off>", 'b', set_breakpoint, NULL, 0),
36+
PHPDBG_COMMAND_D_EX(break, "usage: set break <on|off>", 'b', set_break, NULL, 0),
3737
PHPDBG_END_COMMAND
3838
};
3939

0 commit comments

Comments
 (0)