From 4bfbdf55dce16eb2e25defa9d3fbe1b68a9ec38c Mon Sep 17 00:00:00 2001 From: krakjoe Date: Sun, 10 Nov 2013 18:08:08 +0000 Subject: [PATCH] next not quitting when not stepping --- phpdbg_prompt.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/phpdbg_prompt.c b/phpdbg_prompt.c index 7e4f46d093..252af0a16f 100644 --- a/phpdbg_prompt.c +++ b/phpdbg_prompt.c @@ -314,8 +314,10 @@ int phpdbg_interactive(int argc, char **argv TSRMLS_DC) /* {{{ */ } break; - case PHPDBG_NEXT: + case PHPDBG_NEXT: if (PHPDBG_G(stepping)) { return PHPDBG_NEXT; + } + } } -- 2.50.1