From: krakjoe Date: Sun, 10 Nov 2013 18:08:08 +0000 (+0000) Subject: next not quitting when not stepping X-Git-Tag: php-5.6.0alpha1~110^2~520 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4bfbdf55dce16eb2e25defa9d3fbe1b68a9ec38c;p=php next not quitting when not stepping --- 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; + } + } }